aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/resources/HistoryServerExpectations/one_stage_attempt_json_expectation.json
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 /core/src/test/resources/HistoryServerExpectations/one_stage_attempt_json_expectation.json
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 'core/src/test/resources/HistoryServerExpectations/one_stage_attempt_json_expectation.json')
-rw-r--r--core/src/test/resources/HistoryServerExpectations/one_stage_attempt_json_expectation.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/src/test/resources/HistoryServerExpectations/one_stage_attempt_json_expectation.json b/core/src/test/resources/HistoryServerExpectations/one_stage_attempt_json_expectation.json
index 111cb8163e..b07011d4f1 100644
--- a/core/src/test/resources/HistoryServerExpectations/one_stage_attempt_json_expectation.json
+++ b/core/src/test/resources/HistoryServerExpectations/one_stage_attempt_json_expectation.json
@@ -6,6 +6,9 @@
"numCompleteTasks" : 8,
"numFailedTasks" : 0,
"executorRunTime" : 3476,
+ "submissionTime" : "2015-02-03T16:43:05.829GMT",
+ "firstTaskLaunchedTime" : "2015-02-03T16:43:05.829GMT",
+ "completionTime" : "2015-02-03T16:43:06.286GMT",
"inputBytes" : 28000128,
"inputRecords" : 0,
"outputBytes" : 0,
@@ -267,4 +270,4 @@
"diskBytesSpilled" : 0
}
}
-} \ No newline at end of file
+}