Skip to content

Commit

Permalink
SPARK-5768: Fix for incorrect memory in Spark UI
Browse files Browse the repository at this point in the history
  • Loading branch information
rekhajoshm committed Jun 24, 2015
1 parent 0be142d commit eb823b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions core/src/main/scala/org/apache/spark/ui/ToolTips.scala
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ private[spark] object ToolTips {

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

val STORAGE_MEMORY =
"Total memory used for caching of the total available memory for caching.This is the storage memory used on the executor."

val SHUFFLE_WRITE =
"Bytes and records written to disk in order to be read by a shuffle in a future stage."

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private[ui] class ExecutorsPage(
<th>Executor ID</th>
<th>Address</th>
<th>RDD Blocks</th>
<th>Memory Used</th>
<th><span data-toggle="tooltip" title={ToolTips.STORAGE_MEMORY}>Storage Memory</span></th>
<th>Disk Used</th>
<th>Active Tasks</th>
<th>Failed Tasks</th>
Expand Down

0 comments on commit eb823b8

Please sign in to comment.