File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
core/src/main/scala/spark/scheduler Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -635,7 +635,7 @@ class DAGScheduler(
635
635
mapOutputTracker.registerMapOutputs(
636
636
stage.shuffleDep.get.shuffleId,
637
637
stage.outputLocs.map(list => if (list.isEmpty) null else list.head).toArray,
638
- changeGeneration = true )
638
+ changeEpoch = true )
639
639
}
640
640
clearCacheLocs()
641
641
if (stage.outputLocs.count(_ == Nil ) != 0 ) {
@@ -718,7 +718,7 @@ class DAGScheduler(
718
718
for ((shuffleId, stage) <- shuffleToMapStage) {
719
719
stage.removeOutputsOnExecutor(execId)
720
720
val locs = stage.outputLocs.map(list => if (list.isEmpty) null else list.head).toArray
721
- mapOutputTracker.registerMapOutputs(shuffleId, locs, changeGeneration = true )
721
+ mapOutputTracker.registerMapOutputs(shuffleId, locs, changeEpoch = true )
722
722
}
723
723
if (shuffleToMapStage.isEmpty) {
724
724
mapOutputTracker.incrementEpoch()
You can’t perform that action at this time.
0 commit comments