Skip to content

Commit eb823b8

Browse files
committed
SPARK-5768: Fix for incorrect memory in Spark UI
1 parent 0be142d commit eb823b8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

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

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

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

38+
val STORAGE_MEMORY =
39+
"Total memory used for caching of the total available memory for caching.This is the storage memory used on the executor."
40+
3841
val SHUFFLE_WRITE =
3942
"Bytes and records written to disk in order to be read by a shuffle in a future stage."
4043

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)