Repository: spark Updated Branches: refs/heads/master 2d8e0a062 -> 1865dd681
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 <[email protected]> Closes #74 from CodingCat/SPARK-1178 and squashes the following commits: 783ec69 [CodingCat] missing document of spark.scheduler.revive.interval Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/1865dd68 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/1865dd68 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/1865dd68 Branch: refs/heads/master Commit: 1865dd681bcb38f8f197b559d1bae3a3771a74e0 Parents: 2d8e0a0 Author: CodingCat <[email protected]> Authored: Tue Mar 4 10:28:17 2014 -0800 Committer: Reynold Xin <[email protected]> Committed: Tue Mar 4 10:28:17 2014 -0800 ---------------------------------------------------------------------- docs/configuration.md | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/1865dd68/docs/configuration.md ---------------------------------------------------------------------- diff --git a/docs/configuration.md b/docs/configuration.md index 8e4c48c..dc5553f 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -202,6 +202,13 @@ Apart from these, the following properties are also available, and may be useful </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> <td>
