You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by an...@apache.org on 2016/03/10 02:58:12 UTC

spark git commit: [SPARK-13775] History page sorted by completed time desc by default.

Repository: spark
Updated Branches:
  refs/heads/master 40e067675 -> 238447db5


[SPARK-13775] History page sorted by completed time desc by default.

## What changes were proposed in this pull request?
Originally the page is sorted by AppID by default.
After tests with users' feedback, we think it might be best to sort by completed time (desc).

## How was this patch tested?
Manually test, with screenshot as follows.
![sorted-by-complete-time-desc](https://cloud.githubusercontent.com/assets/11683054/13647686/d6dea924-e5fa-11e5-8fc5-68e039b74b6f.png)

Author: zhuol <zh...@yahoo-inc.com>

Closes #11608 from zhuoliu/13775.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/238447db
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/238447db
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/238447db

Branch: refs/heads/master
Commit: 238447db5694a236e57fa21e22a5d6d45efa436e
Parents: 40e0676
Author: zhuol <zh...@yahoo-inc.com>
Authored: Wed Mar 9 17:58:09 2016 -0800
Committer: Andrew Or <an...@databricks.com>
Committed: Wed Mar 9 17:58:09 2016 -0800

----------------------------------------------------------------------
 core/src/main/resources/org/apache/spark/ui/static/historypage.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/238447db/core/src/main/resources/org/apache/spark/ui/static/historypage.js
----------------------------------------------------------------------
diff --git a/core/src/main/resources/org/apache/spark/ui/static/historypage.js b/core/src/main/resources/org/apache/spark/ui/static/historypage.js
index 4ff0831..2976099 100644
--- a/core/src/main/resources/org/apache/spark/ui/static/historypage.js
+++ b/core/src/main/resources/org/apache/spark/ui/static/historypage.js
@@ -165,7 +165,7 @@ $(document).ready(function() {
                         {name: 'eighth'},
                     ],
                     "autoWidth": false,
-                    "order": [[ 0, "desc" ]]
+                    "order": [[ 4, "desc" ]]
         };
 
         var rowGroupConf = {


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