Skip to content

Commit 74001db

Browse files
rekhajoshmsarutak
authored andcommitted
[SPARK-5768] [WEB UI] Fix for incorrect memory in Spark UI
Fix for incorrect memory in Spark UI as per SPARK-5768 Author: Joshi <rekhajoshm@gmail.com> Author: Rekha Joshi <rekhajoshm@gmail.com> Closes #6972 from rekhajoshm/SPARK-5768 and squashes the following commits: b678a91 [Joshi] Fix for incorrect memory in Spark UI 2fe53d9 [Joshi] Fix for incorrect memory in Spark UI eb823b8 [Joshi] SPARK-5768: Fix for incorrect memory in Spark UI 0be142d [Rekha Joshi] Merge pull request #3 from apache/master 106fd8e [Rekha Joshi] Merge pull request #2 from apache/master e3677c9 [Rekha Joshi] Merge pull request #1 from apache/master (cherry picked from commit 085a721) Signed-off-by: Kousuke Saruta <sarutak@oss.nttdata.co.jp>
1 parent 0605e08 commit 74001db

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

core/src/main/scala/org/apache/spark/ui/ToolTips.scala

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ private[spark] object ToolTips {
3535

3636
val OUTPUT = "Bytes and records written to Hadoop."
3737

38+
val STORAGE_MEMORY =
39+
"Memory used / total available memory for storage of data " +
40+
"like RDD partitions cached in memory. "
41+
3842
val SHUFFLE_WRITE =
3943
"Bytes and records written to disk in order to be read by a shuffle in a future stage."
4044

core/src/main/scala/org/apache/spark/ui/exec/ExecutorsPage.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private[ui] class ExecutorsPage(
6767
<th>Executor ID</th>
6868
<th>Address</th>
6969
<th>RDD Blocks</th>
70-
<th>Memory Used</th>
70+
<th><span data-toggle="tooltip" title={ToolTips.STORAGE_MEMORY}>Storage Memory</span></th>
7171
<th>Disk Used</th>
7272
<th>Active Tasks</th>
7373
<th>Failed Tasks</th>

0 commit comments

Comments
 (0)