Github user kayousterhout commented on a diff in the pull request:

    https://github.com/apache/spark/pull/1545#discussion_r15317700
  
    --- Diff: 
core/src/main/scala/org/apache/spark/ui/jobs/JobProgressListener.scala ---
    @@ -43,13 +43,16 @@ class JobProgressListener(conf: SparkConf) extends 
SparkListener with Logging {
       // How many stages to remember
       val retainedStages = conf.getInt("spark.ui.retainedStages", 
DEFAULT_RETAINED_STAGES)
     
    -  val activeStages = HashMap[Int, StageInfo]()
    +  // Map from stageId to StageInfo
    +  val activeStages = new HashMap[Int, StageInfo]
    --- End diff --
    
    Why isn't this also indexed by stageId+attemptID?


---
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.
---

Reply via email to