You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by shahidki31 <gi...@git.apache.org> on 2018/11/18 23:12:49 UTC

[GitHub] spark pull request #23081: [SPARK-26109][WebUI]Duration in the task summary ...

GitHub user shahidki31 opened a pull request:

    https://github.com/apache/spark/pull/23081

    [SPARK-26109][WebUI]Duration in the task summary metrics table and the task table are different

    ## What changes were proposed in this pull request?
    Task summary displays the summary of the task table in the stage page. However, the duration metrics of task summary and task table are not matching. The reason is because, in the task summary we display executorRunTime as the duration and in task table, the actual duration.
    Except duration metrics, all other metrics are properly displaying in the task summary.
    
    In Spark2.2, we used to show executorRunTime as duration in the taskTable. That is why, in summary metrics also the exeuctorRunTime shows as the duration. In Spark2.3, it changed to the actual duration of task. So, summary metrics also should change according to that.
    
    ## How was this patch tested?
    Before patch:
    
    ![screenshot from 2018-11-19 04-32-06](https://user-images.githubusercontent.com/23054875/48679263-1e4fff80-ebb4-11e8-9ed5-16d892039e01.png)
    
    After patch:
    ![screenshot from 2018-11-19 04-37-39](https://user-images.githubusercontent.com/23054875/48679343-e39a9700-ebb4-11e8-8df9-9dc3a28d4bce.png)
    
    


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/shahidki31/spark duratinSummary

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/23081.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #23081
    
----
commit 131164c2104a119468e782fb1d484f2d15274e33
Author: Shahid <sh...@...>
Date:   2018-11-18T22:38:21Z

    taskMetrics duration

----


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Thank you @srowen 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Can one of the admins verify this patch?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #98984 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98984/testReport)** for PR 23081 at commit [`131164c`](https://github.com/apache/spark/commit/131164c2104a119468e782fb1d484f2d15274e33).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99052 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99052/testReport)** for PR 23081 at commit [`97bd213`](https://github.com/apache/spark/commit/97bd213b085a1b1fd264156bd1f090d673d603f4).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #23081: [SPARK-26109][WebUI]Duration in the task summary ...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/23081#discussion_r235075045
  
    --- Diff: core/src/main/scala/org/apache/spark/ui/jobs/StagePage.scala ---
    @@ -996,7 +996,7 @@ private[ui] object ApiHelper {
         HEADER_EXECUTOR -> TaskIndexNames.EXECUTOR,
         HEADER_HOST -> TaskIndexNames.HOST,
         HEADER_LAUNCH_TIME -> TaskIndexNames.LAUNCH_TIME,
    -    HEADER_DURATION -> TaskIndexNames.DURATION,
    +    HEADER_DURATION -> TaskIndexNames.EXEC_RUN_TIME,
    --- End diff --
    
    Thanks. Done


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Jenkins, retest this please


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99024 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99024/testReport)** for PR 23081 at commit [`51e0108`](https://github.com/apache/spark/commit/51e0108c127442c4cad537a849962c4b28f8149d).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99066 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99066/testReport)** for PR 23081 at commit [`fb94fa7`](https://github.com/apache/spark/commit/fb94fa78044cd6465c97f4d7f72ef35244c52748).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98984/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99074 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99074/testReport)** for PR 23081 at commit [`fb94fa7`](https://github.com/apache/spark/commit/fb94fa78044cd6465c97f4d7f72ef35244c52748).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged to master/2.4/2.3


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #23081: [SPARK-26109][WebUI]Duration in the task summary ...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/23081#discussion_r235075470
  
    --- Diff: core/src/main/scala/org/apache/spark/ui/jobs/StagePage.scala ---
    @@ -996,7 +996,7 @@ private[ui] object ApiHelper {
         HEADER_EXECUTOR -> TaskIndexNames.EXECUTOR,
         HEADER_HOST -> TaskIndexNames.HOST,
         HEADER_LAUNCH_TIME -> TaskIndexNames.LAUNCH_TIME,
    -    HEADER_DURATION -> TaskIndexNames.DURATION,
    +    HEADER_DURATION -> TaskIndexNames.EXEC_RUN_TIME,
    --- End diff --
    
    Done.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/99052/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99064 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99064/testReport)** for PR 23081 at commit [`99b9135`](https://github.com/apache/spark/commit/99b9135e67ad8f049f915294b082f8fafc5e5ba4).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99064 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99064/testReport)** for PR 23081 at commit [`99b9135`](https://github.com/apache/spark/commit/99b9135e67ad8f049f915294b082f8fafc5e5ba4).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    again, failure unrelated to the PR.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99053 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99053/testReport)** for PR 23081 at commit [`b9a06a9`](https://github.com/apache/spark/commit/b9a06a924840ab1bc042d91d0adf5c1928a654d8).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99074 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99074/testReport)** for PR 23081 at commit [`fb94fa7`](https://github.com/apache/spark/commit/fb94fa78044cd6465c97f4d7f72ef35244c52748).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #23081: [SPARK-26109][WebUI]Duration in the task summary ...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/23081#discussion_r235069217
  
    --- Diff: core/src/main/scala/org/apache/spark/ui/jobs/StagePage.scala ---
    @@ -996,7 +996,7 @@ private[ui] object ApiHelper {
         HEADER_EXECUTOR -> TaskIndexNames.EXECUTOR,
         HEADER_HOST -> TaskIndexNames.HOST,
         HEADER_LAUNCH_TIME -> TaskIndexNames.LAUNCH_TIME,
    -    HEADER_DURATION -> TaskIndexNames.DURATION,
    +    HEADER_DURATION -> TaskIndexNames.EXEC_RUN_TIME,
    --- End diff --
    
    Thanks. Done


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #4435 has finished](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4435/testReport)** for PR 23081 at commit [`fb94fa7`](https://github.com/apache/spark/commit/fb94fa78044cd6465c97f4d7f72ef35244c52748).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    cc @vanzin @srowen Kindly review.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by gengliangwang <gi...@git.apache.org>.
Github user gengliangwang commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    retest this please.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #98998 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98998/testReport)** for PR 23081 at commit [`f834190`](https://github.com/apache/spark/commit/f834190d7e2980071b9f5b44d71b905ab5115121).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/99024/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99075 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99075/testReport)** for PR 23081 at commit [`fb94fa7`](https://github.com/apache/spark/commit/fb94fa78044cd6465c97f4d7f72ef35244c52748).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by srowen <gi...@git.apache.org>.
Github user srowen commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Jenkins, add to whitelist


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99053 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99053/testReport)** for PR 23081 at commit [`b9a06a9`](https://github.com/apache/spark/commit/b9a06a924840ab1bc042d91d0adf5c1928a654d8).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #23081: [SPARK-26109][WebUI]Duration in the task summary ...

Posted by gengliangwang <gi...@git.apache.org>.
Github user gengliangwang commented on a diff in the pull request:

    https://github.com/apache/spark/pull/23081#discussion_r235065240
  
    --- Diff: core/src/main/scala/org/apache/spark/ui/jobs/StagePage.scala ---
    @@ -996,7 +996,7 @@ private[ui] object ApiHelper {
         HEADER_EXECUTOR -> TaskIndexNames.EXECUTOR,
         HEADER_HOST -> TaskIndexNames.HOST,
         HEADER_LAUNCH_TIME -> TaskIndexNames.LAUNCH_TIME,
    -    HEADER_DURATION -> TaskIndexNames.DURATION,
    +    HEADER_DURATION -> TaskIndexNames.EXEC_RUN_TIME,
    --- End diff --
    
    Nit: add comment to explain why it should be executor run time here


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99052 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99052/testReport)** for PR 23081 at commit [`97bd213`](https://github.com/apache/spark/commit/97bd213b085a1b1fd264156bd1f090d673d603f4).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #23081: [SPARK-26109][WebUI]Duration in the task summary ...

Posted by gengliangwang <gi...@git.apache.org>.
Github user gengliangwang commented on a diff in the pull request:

    https://github.com/apache/spark/pull/23081#discussion_r235071529
  
    --- Diff: core/src/main/scala/org/apache/spark/ui/jobs/StagePage.scala ---
    @@ -996,7 +996,7 @@ private[ui] object ApiHelper {
         HEADER_EXECUTOR -> TaskIndexNames.EXECUTOR,
         HEADER_HOST -> TaskIndexNames.HOST,
         HEADER_LAUNCH_TIME -> TaskIndexNames.LAUNCH_TIME,
    -    HEADER_DURATION -> TaskIndexNames.DURATION,
    +    HEADER_DURATION -> TaskIndexNames.EXEC_RUN_TIME,
    --- End diff --
    
    Not big deal but there are two spaces after `SPARK-26109:` 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Thank you @gengliangwang 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99062 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99062/testReport)** for PR 23081 at commit [`b9a06a9`](https://github.com/apache/spark/commit/b9a06a924840ab1bc042d91d0adf5c1928a654d8).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/99075/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/98998/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #4435 has started](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4435/testReport)** for PR 23081 at commit [`fb94fa7`](https://github.com/apache/spark/commit/fb94fa78044cd6465c97f4d7f72ef35244c52748).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/99062/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/99066/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99075 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99075/testReport)** for PR 23081 at commit [`fb94fa7`](https://github.com/apache/spark/commit/fb94fa78044cd6465c97f4d7f72ef35244c52748).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99024 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99024/testReport)** for PR 23081 at commit [`51e0108`](https://github.com/apache/spark/commit/51e0108c127442c4cad537a849962c4b28f8149d).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    It is also a random failure. 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #23081: [SPARK-26109][WebUI]Duration in the task summary ...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/23081


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/99053/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #98998 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98998/testReport)** for PR 23081 at commit [`f834190`](https://github.com/apache/spark/commit/f834190d7e2980071b9f5b44d71b905ab5115121).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #98984 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/98984/testReport)** for PR 23081 at commit [`131164c`](https://github.com/apache/spark/commit/131164c2104a119468e782fb1d484f2d15274e33).
     * This patch **fails Spark unit tests**.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/99074/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Can one of the admins verify this patch?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99062 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99062/testReport)** for PR 23081 at commit [`b9a06a9`](https://github.com/apache/spark/commit/b9a06a924840ab1bc042d91d0adf5c1928a654d8).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #4436 has finished](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4436/testReport)** for PR 23081 at commit [`fb94fa7`](https://github.com/apache/spark/commit/fb94fa78044cd6465c97f4d7f72ef35244c52748).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    retest this please


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Seems random failure, unrelated to the PR.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/testing-k8s-prb-make-spark-distribution-unified/5192/
    Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    retest this please


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Test FAILed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/99064/
    Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #4436 has started](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/4436/testReport)** for PR 23081 at commit [`fb94fa7`](https://github.com/apache/spark/commit/fb94fa78044cd6465c97f4d7f72ef35244c52748).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    retest this please


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged build finished. Test FAILed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Merged build finished. Test PASSed.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by shahidki31 <gi...@git.apache.org>.
Github user shahidki31 commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    Thank you @srowen . Till Spark2.2, duration (which was 'executorRunTime') in the task table and the summary table were consistent. Apart from the duration, all the metrics in the task table and the summary table are consistent.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #23081: [SPARK-26109][WebUI]Duration in the task summary metrics...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/23081
  
    **[Test build #99066 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/99066/testReport)** for PR 23081 at commit [`fb94fa7`](https://github.com/apache/spark/commit/fb94fa78044cd6465c97f4d7f72ef35244c52748).


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org