Github user kayousterhout commented on a diff in the pull request: https://github.com/apache/spark/pull/246#discussion_r11423117 --- Diff: core/src/main/scala/org/apache/spark/ui/jobs/JobProgressListener.scala --- @@ -224,8 +225,31 @@ private[ui] class JobProgressListener(conf: SparkConf) extends SparkListener { failedStages += s trimIfNecessary(failedStages) } + + // Clean up other stages associated with this job; typically when job is cancelled + jobIdToStageIds.get(jobEnd.jobId).getOrElse(Seq[Int]()).foreach { sId => --- End diff -- I don't think this code is necessary anymore, now that we explicitly tell the listeners when stages end
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---