aboutsummaryrefslogtreecommitdiff
path: root/docs/configuration.md
diff options
context:
space:
mode:
authorPhilipp Hoffmann <mail@philipphoffmann.de>2016-05-09 11:02:13 -0700
committerAndrew Or <andrew@databricks.com>2016-05-09 11:02:13 -0700
commit65b4ab281efd170c9fad7152629f68eaef7f7088 (patch)
tree688358293354e40bb30c5c5905c4355cdc4d9b1f /docs/configuration.md
parent2992a215c9cd95a2be986b254f4e27d18e248b7d (diff)
downloadspark-65b4ab281efd170c9fad7152629f68eaef7f7088.tar.gz
spark-65b4ab281efd170c9fad7152629f68eaef7f7088.tar.bz2
spark-65b4ab281efd170c9fad7152629f68eaef7f7088.zip
[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 <mail@philipphoffmann.de> Closes #13001 from philipphoffmann/patch-3.
Diffstat (limited to 'docs/configuration.md')
-rw-r--r--docs/configuration.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index 9191570d07..d23f0fe1a1 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -296,7 +296,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>
@@ -308,7 +308,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>