Github user guoxiaolongzte commented on a diff in the pull request: https://github.com/apache/spark/pull/19242#discussion_r145346521 --- Diff: docs/configuration.md --- @@ -740,6 +740,20 @@ Apart from these, the following properties are also available, and may be useful </td> </tr> <tr> + <td><code>spark.eventLog.overwrite</code></td> + <td>false</td> + <td> + Whether to overwrite any existing files. + </td> +</tr> +<tr> + <td><code>spark.eventLog.buffer.kb</code></td> + <td>100</td> + <td> + Buffer size to use when writing to output streams.Buffer size in KB. --- End diff -- I have fixed the description and correction unit. Please check org.apache.spark.internal.config#EVENT_LOG_OUTPUT_BUFFER_SIZE private[spark] val EVENT_LOG_OUTPUT_BUFFER_SIZE = ConfigBuilder("spark.eventLog.buffer.kb") .bytesConf(ByteUnit.KiB) .createWithDefaultString("100k")
--- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org