Repository: spark Updated Branches: refs/heads/branch-1.5 025e16b32 -> 166fdf4e3
[SPARK-11039][Documentation][Web UI] Document additional ui configurations Add documentation for configuration: - spark.sql.ui.retainedExecutions - spark.streaming.ui.retainedBatches Author: Nick Pritchard <[email protected]> Closes #9052 from pnpritchard/SPARK-11039. (cherry picked from commit b591de7c07ba8e71092f71e34001520bec995a8a) Signed-off-by: Josh Rosen <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/166fdf4e Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/166fdf4e Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/166fdf4e Branch: refs/heads/branch-1.5 Commit: 166fdf4e311d00257e7ad43fe87e8e80f97cf476 Parents: 025e16b Author: Nick Pritchard <[email protected]> Authored: Thu Oct 15 12:45:37 2015 -0700 Committer: Josh Rosen <[email protected]> Committed: Thu Oct 15 12:45:49 2015 -0700 ---------------------------------------------------------------------- docs/configuration.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/166fdf4e/docs/configuration.md ---------------------------------------------------------------------- diff --git a/docs/configuration.md b/docs/configuration.md index 822dba8..fd1ee23 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -594,6 +594,20 @@ Apart from these, the following properties are also available, and may be useful How many finished drivers the Spark UI and status APIs remember before garbage collecting. </td> </tr> +<tr> + <td><code>spark.sql.ui.retainedExecutions</code></td> + <td>1000</td> + <td> + How many finished executions the Spark UI and status APIs remember before garbage collecting. + </td> +</tr> +<tr> + <td><code>spark.streaming.ui.retainedBatches</code></td> + <td>1000</td> + <td> + How many finished batches the Spark UI and status APIs remember before garbage collecting. + </td> +</tr> </table> #### Compression and Serialization --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
