From 1865dd681bcb38f8f197b559d1bae3a3771a74e0 Mon Sep 17 00:00:00 2001 From: CodingCat <zhunansjtu@gmail.com> Date: Tue, 4 Mar 2014 10:28:17 -0800 Subject: [PATCH] SPARK-1178: missing document of spark.scheduler.revive.interval https://spark-project.atlassian.net/browse/SPARK-1178 The configuration on spark.scheduler.revive.interval is undocumented but actually used https://github.com/apache/spark/blob/master/core/src/main/scala/org/apache/spark/scheduler/cluster/CoarseGrainedSchedulerBackend.scala#L64 Author: CodingCat <zhunansjtu@gmail.com> Closes #74 from CodingCat/SPARK-1178 and squashes the following commits: 783ec69 [CodingCat] missing document of spark.scheduler.revive.interval --- docs/configuration.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/configuration.md b/docs/configuration.md index 8e4c48c81f..dc5553f3da 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -201,6 +201,13 @@ Apart from these, the following properties are also available, and may be useful multi-user services. </td> </tr> +<tr> + <td>spark.scheduler.revive.interval</td> + <td>1000</td> + <td> + The interval length for the scheduler to revive the worker resource offers to run tasks. (in milliseconds) + </td> +</tr> <tr> <td>spark.reducer.maxMbInFlight</td> <td>48</td> -- GitLab