aboutsummaryrefslogtreecommitdiff
path: root/docs/monitoring.md
diff options
context:
space:
mode:
authorMarcelo Vanzin <vanzin@cloudera.com>2015-04-17 19:02:07 -0700
committerAndrew Or <andrew@databricks.com>2015-04-17 19:02:07 -0700
commit1991337336596f94698e79c2366f065c374128ab (patch)
tree9ddb184bf0adb8acf0ae063007bab1052093675f /docs/monitoring.md
parent6fbeb82e13db7117d8f216e6148632490a4bc5be (diff)
downloadspark-1991337336596f94698e79c2366f065c374128ab.tar.gz
spark-1991337336596f94698e79c2366f065c374128ab.tar.bz2
spark-1991337336596f94698e79c2366f065c374128ab.zip
[SPARK-5933] [core] Move config deprecation warnings to SparkConf.
I didn't find many deprecated configs after a grep-based search, but the ones I could find were moved to the centralized location in SparkConf. While there, I deprecated a couple more HS configs that mentioned time units. Author: Marcelo Vanzin <vanzin@cloudera.com> Closes #5562 from vanzin/SPARK-5933 and squashes the following commits: dcb617e7 [Marcelo Vanzin] [SPARK-5933] [core] Move config deprecation warnings to SparkConf.
Diffstat (limited to 'docs/monitoring.md')
-rw-r--r--docs/monitoring.md15
1 files changed, 7 insertions, 8 deletions
diff --git a/docs/monitoring.md b/docs/monitoring.md
index 2a13022459..8a85928d6d 100644
--- a/docs/monitoring.md
+++ b/docs/monitoring.md
@@ -153,19 +153,18 @@ follows:
</td>
</tr>
<tr>
- <td>spark.history.fs.cleaner.interval.seconds</td>
- <td>86400</td>
+ <td>spark.history.fs.cleaner.interval</td>
+ <td>1d</td>
<td>
- How often the job history cleaner checks for files to delete, in seconds. Defaults to 86400 (one day).
- Files are only deleted if they are older than spark.history.fs.cleaner.maxAge.seconds.
+ How often the job history cleaner checks for files to delete.
+ Files are only deleted if they are older than spark.history.fs.cleaner.maxAge.
</td>
</tr>
<tr>
- <td>spark.history.fs.cleaner.maxAge.seconds</td>
- <td>3600 * 24 * 7</td>
+ <td>spark.history.fs.cleaner.maxAge</td>
+ <td>7d</td>
<td>
- Job history files older than this many seconds will be deleted when the history cleaner runs.
- Defaults to 3600 * 24 * 7 (1 week).
+ Job history files older than this will be deleted when the history cleaner runs.
</td>
</tr>
</table>