aboutsummaryrefslogtreecommitdiff
path: root/docs/monitoring.md
diff options
context:
space:
mode:
authorMarcelo Vanzin <vanzin@cloudera.com>2015-04-17 11:06:01 +0100
committerSean Owen <sowen@cloudera.com>2015-04-17 11:06:01 +0100
commit4527761bcd6501c362baf2780905a0018b9a74ba (patch)
tree7513658d9858e7a4a63a93b6e9d75b207a0d6fc3 /docs/monitoring.md
parentf7a25644ed5b3b49fe7f33743bec3d95cdf7913e (diff)
downloadspark-4527761bcd6501c362baf2780905a0018b9a74ba.tar.gz
spark-4527761bcd6501c362baf2780905a0018b9a74ba.tar.bz2
spark-4527761bcd6501c362baf2780905a0018b9a74ba.zip
[SPARK-6046] [core] Reorganize deprecated config support in SparkConf.
This change tries to follow the chosen way for handling deprecated configs in SparkConf: all values (old and new) are kept in the conf object, and newer names take precedence over older ones when retrieving the value. Warnings are logged when config options are set, which generally happens on the driver node (where the logs are most visible). Author: Marcelo Vanzin <vanzin@cloudera.com> Closes #5514 from vanzin/SPARK-6046 and squashes the following commits: 9371529 [Marcelo Vanzin] Avoid math. 6cf3f11 [Marcelo Vanzin] Review feedback. 2445d48 [Marcelo Vanzin] Fix (and cleanup) update interval initialization. b6824be [Marcelo Vanzin] Clean up the other deprecated config use also. ab20351 [Marcelo Vanzin] Update FsHistoryProvider to only retrieve new config key. 2c93209 [Marcelo Vanzin] [SPARK-6046] [core] Reorganize deprecated config support in SparkConf.
Diffstat (limited to 'docs/monitoring.md')
-rw-r--r--docs/monitoring.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/monitoring.md b/docs/monitoring.md
index 6816671ffb..2a13022459 100644
--- a/docs/monitoring.md
+++ b/docs/monitoring.md
@@ -86,10 +86,10 @@ follows:
</td>
</tr>
<tr>
- <td>spark.history.fs.update.interval.seconds</td>
- <td>10</td>
+ <td>spark.history.fs.update.interval</td>
+ <td>10s</td>
<td>
- The period, in seconds, at which information displayed by this history server is updated.
+ The period at which information displayed by this history server is updated.
Each update checks for any changes made to the event logs in persisted storage.
</td>
</tr>