Github user JoshRosen commented on a diff in the pull request:
https://github.com/apache/spark/pull/4708#discussion_r25145581
--- Diff: core/src/main/scala/org/apache/spark/scheduler/DAGScheduler.scala
---
@@ -996,50 +1006,52 @@ class DAGScheduler(
if (failedEpoch.contains(execId) && smt.epoch <=
failedEpoch(execId)) {
logInfo("Ignoring possibly bogus ShuffleMapTask completion
from " + execId)
} else {
- stage.addOutputLoc(smt.partitionId, status)
+ shuffleStage.addOutputLoc(smt.partitionId, status)
}
- if (runningStages.contains(stage) &&
stage.pendingTasks.isEmpty) {
- markStageAsFinished(stage)
- logInfo("looking for newly runnable stages")
+ if (runningStages.contains(shuffleStage) &&
shuffleStage.pendingTasks.isEmpty) {
+ markStageAsFinished(shuffleStage)
+ logInfo("looking for newly runnable shuffleStages")
--- End diff --
I think that this log message should remain unchanged, since technically I
think we'll consider scheduling of all runnable stages, which might also
include result stages
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]