-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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
[SPARK-4765] Make GC time always shown in UI. #3622
Conversation
Test build #24188 has started for PR 3622 at commit
|
Test build #24188 has finished for PR 3622 at commit
|
Test FAILed. |
This commit removes the GC time for each task from the set of optional, additional metrics, and instead always shows it for each task.
4d1cf4b
to
e71d893
Compare
MIMA tests pass locally; I rebased this on master to see if that makes the tests pass |
Test build #24191 has started for PR 3622 at commit
|
Test build #24191 has finished for PR 3622 at commit
|
Test FAILed. |
That class is |
@JoshRosen One thing I was wondering about here that I couldn't figure out: what does "private" actually mean in this context? I would have thought it meant that it could only be used in the context of the same file, but that's obviously not the case since it's used in other UI classes. |
@kayousterhout Yeah, there must be something about |
Test build #24255 has started for PR 3622 at commit
|
Test build #24255 has finished for PR 3622 at commit
|
Test PASSed. |
Ok well suspiciously making the class private[spark] now makes all of the MiMA tests pass... |
@kayousterhout I ran into this issue with a private case class too on: #3486 and added exclusions. I can try adding private[spark] and see if that fixes the Mima issues too. Anyways, this patch LGTM |
LGTM. Which branches should this be merged into? @pwendell, do you think we should pull this into |
This commit removes the GC time for each task from the set of optional, additional metrics, and instead always shows it for each task. cc pwendell Author: Kay Ousterhout <[email protected]> Closes #3622 from kayousterhout/gc_time and squashes the following commits: 15ac242 [Kay Ousterhout] Make TaskDetailsClassNames private[spark] e71d893 [Kay Ousterhout] [SPARK-4765] Make GC time always shown in UI. (cherry picked from commit 1f51106) Signed-off-by: Kay Ousterhout <[email protected]>
Thanks @JoshRosen and @ksakellis! I merged this into master and 1.2 (@pwendell asked me to do this so it could be included in 1.2, to prevent a regression where GC time disappears). |
This commit removes the GC time for each task from the set of
optional, additional metrics, and instead always shows it for
each task.
cc @pwendell