aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorXin Ren <iamshrek@126.com>2015-12-08 11:44:51 -0600
committerImran Rashid <irashid@cloudera.com>2015-12-08 11:46:46 -0600
commit6cb06e8711fd6ac10c57faeb94bc323cae1cef27 (patch)
tree2eb7479b50302d93e1532e26f7892f5c2974df7b /project
parente3735ce1602826f0a8e0ca9e08730923843449ee (diff)
downloadspark-6cb06e8711fd6ac10c57faeb94bc323cae1cef27.tar.gz
spark-6cb06e8711fd6ac10c57faeb94bc323cae1cef27.tar.bz2
spark-6cb06e8711fd6ac10c57faeb94bc323cae1cef27.zip
[SPARK-11155][WEB UI] Stage summary json should include stage duration
The json endpoint for stages doesn't include information on the stage duration that is present in the UI. This looks like a simple oversight, they should be included. eg., the metrics should be included at api/v1/applications/<appId>/stages. Metrics I've added are: submissionTime, firstTaskLaunchedTime and completionTime Author: Xin Ren <iamshrek@126.com> Closes #10107 from keypointt/SPARK-11155.
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index b4aa6adc3c..685cb419ca 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -132,7 +132,9 @@ object MimaExcludes {
ProblemFilters.exclude[MissingTypesProblem]("org.apache.spark.sql.jdbc.NoopDialect$")
) ++ Seq (
ProblemFilters.exclude[MissingMethodProblem](
- "org.apache.spark.status.api.v1.ApplicationInfo.this")
+ "org.apache.spark.status.api.v1.ApplicationInfo.this"),
+ ProblemFilters.exclude[MissingMethodProblem](
+ "org.apache.spark.status.api.v1.StageData.this")
) ++ Seq(
// SPARK-11766 add toJson to Vector
ProblemFilters.exclude[MissingMethodProblem](