aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/scala
diff options
context:
space:
mode:
authorliuxian <liu.xian3@zte.com.cn>2017-03-05 10:23:50 +0000
committerSean Owen <sowen@cloudera.com>2017-03-05 10:23:50 +0000
commit42c4cd9e2a44eaa6a16e3b490eb82b6292d9b2ea (patch)
tree5afe7aa1e00c06bcd6dabe008ed29ffb5aacffe4 /core/src/main/scala
parent6b0cfd9fa51aca4536d7c3f2a4bbceae11a50339 (diff)
downloadspark-42c4cd9e2a44eaa6a16e3b490eb82b6292d9b2ea.tar.gz
spark-42c4cd9e2a44eaa6a16e3b490eb82b6292d9b2ea.tar.bz2
spark-42c4cd9e2a44eaa6a16e3b490eb82b6292d9b2ea.zip
[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.xian3@zte.com.cn> Closes #17132 from 10110346/wid-lx-0302.
Diffstat (limited to 'core/src/main/scala')
-rw-r--r--core/src/main/scala/org/apache/spark/deploy/master/ui/MasterPage.scala2
1 files changed, 1 insertions, 1 deletions
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 7dbe329754..e722a24d4a 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)