You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<td>Details for the storage status of a given RDD</td>
229
229
</tr>
230
230
</table>
231
231
232
-
When running on Yarn, each application has multiple attempts, so `<app_id>` is really a compound key,
233
-
with `<app_id>/<attempt_id>`.
232
+
When running on Yarn, each application has multiple attempts, so `[app-id]` is actually
233
+
`[app-id]/[attempt-id]` in all cases.
234
234
235
-
These endpoints have been strongly versioned to make it easier to develop applications on top of these
236
-
endpoints, without knowledge of spark internal classes. In particular, Spark guarantees:
235
+
These endpoints have been strongly versioned to make it easier to develop applications on top.
236
+
In particular, Spark guarantees:
237
237
238
238
* Endpoints will never be removed from one version
239
239
* Individual fields will never be removed for any given endpoint
240
240
* New endpoints may be added
241
241
* New fields may be added to existing endpoints
242
-
* New versions of the api may be added in the future, which are free to be completely incompatible with earlier versions
242
+
* New versions of the api may be added in the future at a separate endpoint (eg., `json/v2`). New versions are *not* required to be backwards compatible.
243
243
* Api versions may be dropped, but only after at least one minor release of existing beside a new api version
244
244
245
-
Note that even when examining the UI of a running applications, the `applications/<app_id>` portion is
245
+
Note that even when examining the UI of a running applications, the `applications/[app-id]` portion is
246
246
still required, though there is only one application available. Eg. to see the list of jobs for the
247
-
running app, you would go to `http://localhost:4040/json/v1/applications/<app_id>/jobs`. This is to
247
+
running app, you would go to `http://localhost:4040/json/v1/applications/[app-id]/jobs`. This is to
0 commit comments