Github user pwendell commented on a diff in the pull request: https://github.com/apache/spark/pull/42#discussion_r10596774 --- Diff: docs/configuration.md --- @@ -490,7 +490,30 @@ Apart from these, the following properties are also available, and may be useful <td>spark.logConf</td> <td>false</td> <td> - Log the supplied SparkConf as INFO at start of spark context. + Whether to log the supplied SparkConf as INFO at start of spark context. + </td> +</tr> +<tr> + <td>spark.eventLog.enabled</td> + <td>false</td> + <td> + Whether to log spark events, useful for reconstructing the Web UI after the application has finished. + </td> +</tr> +<tr> + <td>spark.eventLog.compress</td> + <td>false</td> + <td> + Whether to compress logged events, if <code>spark.eventLog.enabled</code> is true. + </td> +</tr> +<tr> + <td>spark.eventLog.dir</td> + <td>/tmp/spark-events</td> --- End diff -- could we put this as a URL in the example? Like maybe `file://tmp/spark-events`? I just want to to be clear it can be a full filesystem path.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---