Uh oh!
There was an error while loading. Please reload this page.
[SPARK-4765] Make GC time always shown in UI. - #3622
Conversation
SparkQA
commented
Dec 5, 2014
Test build #24188 has started for PR 3622 at commit
|
SparkQA
commented
Dec 5, 2014
Test build #24188 has finished for PR 3622 at commit
|
AmplabJenkins
commented
Dec 5, 2014
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.
kayousterhout
commented
Dec 5, 2014
MIMA tests pass locally; I rebased this on master to see if that makes the tests pass |
SparkQA
commented
Dec 5, 2014
Test build #24191 has started for PR 3622 at commit
|
SparkQA
commented
Dec 5, 2014
Test build #24191 has finished for PR 3622 at commit
|
AmplabJenkins
commented
Dec 5, 2014
Test FAILed. |
JoshRosen
commented
Dec 9, 2014
That class is |
kayousterhout
commented
Dec 9, 2014
@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. |
JoshRosen
commented
Dec 9, 2014
@kayousterhout Yeah, there must be something about |
SparkQA
commented
Dec 9, 2014
Test build #24255 has started for PR 3622 at commit
|
SparkQA
commented
Dec 9, 2014
Test build #24255 has finished for PR 3622 at commit
|
AmplabJenkins
commented
Dec 9, 2014
Test PASSed. |
kayousterhout
commented
Dec 9, 2014
Ok well suspiciously making the class private[spark] now makes all of the MiMA tests pass... |
ksakellis
commented
Dec 9, 2014
@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 |
JoshRosen
commented
Dec 9, 2014
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 <kayousterhout@gmail.com> 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 <kayousterhout@gmail.com>
kayousterhout
commented
Dec 9, 2014
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