Repository: spark Updated Branches: refs/heads/branch-1.6 ab006523b -> 518af0796
[SPARK-15223][DOCS] fix wrongly named config reference ## What changes were proposed in this pull request? The configuration setting `spark.executor.logs.rolling.size.maxBytes` was changed to `spark.executor.logs.rolling.maxSize` in 1.4 or so. This commit fixes a remaining reference to the old name in the documentation. Also the description for `spark.executor.logs.rolling.maxSize` was edited to clearly state that the unit for the size is bytes. ## How was this patch tested? no tests Author: Philipp Hoffmann <[email protected]> Closes #13001 from philipphoffmann/patch-3. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/518af079 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/518af079 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/518af079 Branch: refs/heads/branch-1.6 Commit: 518af0796384cd68927b90de8cb33b5a765c2dd0 Parents: ab00652 Author: Philipp Hoffmann <[email protected]> Authored: Mon May 9 11:02:13 2016 -0700 Committer: Andrew Or <[email protected]> Committed: Mon May 9 11:03:30 2016 -0700 ---------------------------------------------------------------------- docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/518af079/docs/configuration.md ---------------------------------------------------------------------- diff --git a/docs/configuration.md b/docs/configuration.md index 64a1899..195fa3c 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -284,7 +284,7 @@ Apart from these, the following properties are also available, and may be useful <td><code>spark.executor.logs.rolling.maxSize</code></td> <td>(none)</td> <td> - Set the max size of the file by which the executor logs will be rolled over. + Set the max size of the file in bytes by which the executor logs will be rolled over. Rolling is disabled by default. See <code>spark.executor.logs.rolling.maxRetainedFiles</code> for automatic cleaning of old logs. </td> @@ -296,7 +296,7 @@ Apart from these, the following properties are also available, and may be useful Set the strategy of rolling of executor logs. By default it is disabled. It can be set to "time" (time-based rolling) or "size" (size-based rolling). For "time", use <code>spark.executor.logs.rolling.time.interval</code> to set the rolling interval. - For "size", use <code>spark.executor.logs.rolling.size.maxBytes</code> to set + For "size", use <code>spark.executor.logs.rolling.maxSize</code> to set the maximum file size for rolling. </td> </tr> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
