Skip to content
Snippets Groups Projects
Commit 6873430c authored by uncleGen's avatar uncleGen Committed by Marcelo Vanzin
Browse files

[SPARK-19009][DOC] Add streaming rest api doc

## What changes were proposed in this pull request?

add streaming rest api doc

related to pr #16253

cc saturday-shi srowen

## How was this patch tested?

Author: uncleGen <hustyugm@gmail.com>

Closes #16414 from uncleGen/SPARK-19009.
parent 00074b57
No related branches found
No related tags found
No related merge requests found
......@@ -276,7 +276,7 @@ can be identified by their `[attempt-id]`. In the API listed below, when running
</tr>
<tr>
<td><code>/applications/[app-id]/stages/[stage-id]/[stage-attempt-id]</code></td>
<td>Details for the given stage attempt</td>
<td>Details for the given stage attempt.</td>
</tr>
<tr>
<td><code>/applications/[app-id]/stages/[stage-id]/[stage-attempt-id]/taskSummary</code></td>
......@@ -321,6 +321,34 @@ can be identified by their `[attempt-id]`. In the API listed below, when running
<td><code>/applications/[base-app-id]/[attempt-id]/logs</code></td>
<td>Download the event logs for a specific application attempt as a zip file.</td>
</tr>
<tr>
<td><code>/applications/[app-id]/streaming/statistics</code></td>
<td>Statistics for the streaming context.</td>
</tr>
<tr>
<td><code>/applications/[app-id]/streaming/receivers</code></td>
<td>A list of all streaming receivers.</td>
</tr>
<tr>
<td><code>/applications/[app-id]/streaming/receivers/[stream-id]</code></td>
<td>Details of the given receiver.</td>
</tr>
<tr>
<td><code>/applications/[app-id]/streaming/batches</code></td>
<td>A list of all retained batches.</td>
</tr>
<tr>
<td><code>/applications/[app-id]/streaming/batches/[batch-id]</code></td>
<td>Details of the given batch.</td>
</tr>
<tr>
<td><code>/applications/[app-id]/streaming/batches/[batch-id]/operations</code></td>
<td>A list of all output operations of the given batch.</td>
</tr>
<tr>
<td><code>/applications/[app-id]/streaming/batches/[batch-id]/operations/[outputOp-id]</code></td>
<td>Details of the given operation and given batch.</td>
</tr>
</table>
The number of jobs and stages which can retrieved is constrained by the same retention
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment