Repository: spark Updated Branches: refs/heads/master d45a0d3ca -> b591de7c0
[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. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/b591de7c Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/b591de7c Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/b591de7c Branch: refs/heads/master Commit: b591de7c07ba8e71092f71e34001520bec995a8a Parents: d45a0d3 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:37 2015 -0700 ---------------------------------------------------------------------- docs/configuration.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/b591de7c/docs/configuration.md ---------------------------------------------------------------------- diff --git a/docs/configuration.md b/docs/configuration.md index 771d93b..46d92ce 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -554,6 +554,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]
