aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/resources/HistoryServerExpectations/stage_list_with_accumulable_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/stage_list_with_accumulable_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/stage_list_with_accumulable_json_expectation.json')
-rw-r--r--core/src/test/resources/HistoryServerExpectations/stage_list_with_accumulable_json_expectation.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/src/test/resources/HistoryServerExpectations/stage_list_with_accumulable_json_expectation.json b/core/src/test/resources/HistoryServerExpectations/stage_list_with_accumulable_json_expectation.json
index 79ccacd309..afa425f8c2 100644
--- a/core/src/test/resources/HistoryServerExpectations/stage_list_with_accumulable_json_expectation.json
+++ b/core/src/test/resources/HistoryServerExpectations/stage_list_with_accumulable_json_expectation.json
@@ -6,6 +6,9 @@
"numCompleteTasks" : 8,
"numFailedTasks" : 0,
"executorRunTime" : 120,
+ "submissionTime" : "2015-03-16T19:25:36.103GMT",
+ "firstTaskLaunchedTime" : "2015-03-16T19:25:36.515GMT",
+ "completionTime" : "2015-03-16T19:25:36.579GMT",
"inputBytes" : 0,
"inputRecords" : 0,
"outputBytes" : 0,
@@ -24,4 +27,4 @@
"name" : "my counter",
"value" : "5050"
} ]
-} ] \ No newline at end of file
+} ]