diff --git a/docs/configuration.md b/docs/configuration.md index 9191570d076253d40d9499a8ee69071e34b795f7..d23f0fe1a1c46879c2a9c7827a6288bcbd61eda7 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>