We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2856b85 commit a08c3e9Copy full SHA for a08c3e9
core/src/main/scala/org/apache/spark/status/AppStatusListener.scala
@@ -1289,6 +1289,8 @@ private[spark] class AppStatusListener(
1289
}
1290
1291
private def cleanupTasks(stage: LiveStage): Unit = {
1292
+ if (imsCheckpoint.isDefined && !imsCheckpoint.get.isDone) return
1293
+
1294
val countToDelete = calculateNumberToRemove(stage.savedTasks.get(), maxTasksPerStage).toInt
1295
if (countToDelete > 0) {
1296
val stageKey = Array(stage.info.stageId, stage.info.attemptNumber)
0 commit comments