aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-02-02 19:40:30 -0800
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-02-02 19:40:30 -0800
commit34a7bcdb3a19deed18b25225daf47ff22ee20869 (patch)
tree1285fcbdf7aadb28837aa7807538a6ca1d5c5298 /core
parent85019d76a44df9c4d19592da1484f925ef5b5b56 (diff)
downloadspark-34a7bcdb3a19deed18b25225daf47ff22ee20869.tar.gz
spark-34a7bcdb3a19deed18b25225daf47ff22ee20869.tar.bz2
spark-34a7bcdb3a19deed18b25225daf47ff22ee20869.zip
Formatting
Diffstat (limited to 'core')
-rw-r--r--core/src/main/scala/spark/scheduler/DAGScheduler.scala15
1 files changed, 9 insertions, 6 deletions
diff --git a/core/src/main/scala/spark/scheduler/DAGScheduler.scala b/core/src/main/scala/spark/scheduler/DAGScheduler.scala
index 8cfc08e5ac..2a35915560 100644
--- a/core/src/main/scala/spark/scheduler/DAGScheduler.scala
+++ b/core/src/main/scala/spark/scheduler/DAGScheduler.scala
@@ -205,8 +205,9 @@ class DAGScheduler(
missing.toList
}
- /** Returns (and does not) submit a JobSubmitted event suitable to run a given job, and
- * a JobWaiter whose getResult() method will return the result of the job when it is complete.
+ /**
+ * Returns (and does not submit) a JobSubmitted event suitable to run a given job, and a
+ * JobWaiter whose getResult() method will return the result of the job when it is complete.
*
* The job is assumed to have at least one partition; zero partition jobs should be handled
* without a JobSubmitted event.
@@ -308,7 +309,8 @@ class DAGScheduler(
return false
}
- /** Resubmit any failed stages. Ordinarily called after a small amount of time has passed since
+ /**
+ * Resubmit any failed stages. Ordinarily called after a small amount of time has passed since
* the last fetch failure.
*/
private[scheduler] def resubmitFailedStages() {
@@ -321,7 +323,8 @@ class DAGScheduler(
}
}
- /** Check for waiting or failed stages which are now eligible for resubmission.
+ /**
+ * Check for waiting or failed stages which are now eligible for resubmission.
* Ordinarily run on every iteration of the event loop.
*/
private[scheduler] def submitWaitingStages() {
@@ -366,9 +369,9 @@ class DAGScheduler(
// the same time, so we want to make sure we've identified all the reduce tasks that depend
// on the failed node.
if (failed.size > 0 && time > lastFetchFailureTime + RESUBMIT_TIMEOUT) {
- resubmitFailedStages
+ resubmitFailedStages()
} else {
- submitWaitingStages
+ submitWaitingStages()
}
}
}