Repository: spark
Updated Branches:
  refs/heads/master 6b0cfd9fa -> 42c4cd9e2


[SPARK-19792][WEBUI] In the Master Page,the column named “Memory per Node” 
,I think it is not all right

Signed-off-by: liuxian <liu.xian3zte.com.cn>

## What changes were proposed in this pull request?

Open the spark web page,in the Master Page ,have two tables:Running 
Applications table and Completed Applications table, to the column named 
“Memory per Node” ,I think it is not all right ,because a node may be not 
have only one executor.So I think that should be named as “Memory per 
Executor”.Otherwise easy to let the user misunderstanding

## How was this patch tested?

N/A

Author: liuxian <liu.xi...@zte.com.cn>

Closes #17132 from 10110346/wid-lx-0302.


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

Branch: refs/heads/master
Commit: 42c4cd9e2a44eaa6a16e3b490eb82b6292d9b2ea
Parents: 6b0cfd9
Author: liuxian <liu.xi...@zte.com.cn>
Authored: Sun Mar 5 10:23:50 2017 +0000
Committer: Sean Owen <so...@cloudera.com>
Committed: Sun Mar 5 10:23:50 2017 +0000

----------------------------------------------------------------------
 .../main/scala/org/apache/spark/deploy/master/ui/MasterPage.scala  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/42c4cd9e/core/src/main/scala/org/apache/spark/deploy/master/ui/MasterPage.scala
----------------------------------------------------------------------
diff --git 
a/core/src/main/scala/org/apache/spark/deploy/master/ui/MasterPage.scala 
b/core/src/main/scala/org/apache/spark/deploy/master/ui/MasterPage.scala
index 7dbe329..e722a24 100644
--- a/core/src/main/scala/org/apache/spark/deploy/master/ui/MasterPage.scala
+++ b/core/src/main/scala/org/apache/spark/deploy/master/ui/MasterPage.scala
@@ -76,7 +76,7 @@ private[ui] class MasterPage(parent: MasterWebUI) extends 
WebUIPage("") {
     val aliveWorkers = state.workers.filter(_.state == WorkerState.ALIVE)
     val workerTable = UIUtils.listingTable(workerHeaders, workerRow, workers)
 
-    val appHeaders = Seq("Application ID", "Name", "Cores", "Memory per Node", 
"Submitted Time",
+    val appHeaders = Seq("Application ID", "Name", "Cores", "Memory per 
Executor", "Submitted Time",
       "User", "State", "Duration")
     val activeApps = state.activeApps.sortBy(_.startTime).reverse
     val activeAppsTable = UIUtils.listingTable(appHeaders, appRow, activeApps)


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

Reply via email to