-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-6973]remove skipped stage ID from completed set on the allJobsPage #5550
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
47525c6
b987ea7
9e23c71
6459238
40ce94b
a742541
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,6 +22,7 @@ import org.apache.spark.executor.TaskMetrics | |
| import org.apache.spark.scheduler.{AccumulableInfo, TaskInfo} | ||
| import org.apache.spark.util.collection.OpenHashSet | ||
|
|
||
| import scala.collection.mutable | ||
| import scala.collection.mutable.HashMap | ||
|
|
||
| private[jobs] object UIData { | ||
|
|
@@ -63,7 +64,7 @@ private[jobs] object UIData { | |
| /* Stages */ | ||
| var numActiveStages: Int = 0, | ||
| // This needs to be a set instead of a simple count to prevent double-counting of rerun stages: | ||
| var completedStageIndices: OpenHashSet[Int] = new OpenHashSet[Int](), | ||
| var completedStageIndices: mutable.HashSet[Int] = new mutable.HashSet[Int](), | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I might leave out this change as it's no longer buying anything and might make the memory size increase.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you disagree this? But the
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh I understand. OK. |
||
| var numSkippedStages: Int = 0, | ||
| var numFailedStages: Int = 0 | ||
| ) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this case? A stage didn't fail but never submitted, so is it skipped?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, like the case described in the jira.