aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-01-11 10:51:42 -0800
committerPatrick Wendell <pwendell@gmail.com>2014-01-11 10:52:57 -0800
commitb313e156161d5d05a15c3c7a676716fb622ee313 (patch)
tree4e58c77efc853727aabc4beaca5f57312216dc4b
parent7cef8435d7b6b43a33e8be684c769412186ad6ac (diff)
downloadspark-b313e156161d5d05a15c3c7a676716fb622ee313.tar.gz
spark-b313e156161d5d05a15c3c7a676716fb622ee313.tar.bz2
spark-b313e156161d5d05a15c3c7a676716fb622ee313.zip
Fix UI bug introduced in #244.
The 'duration' field was incorrectly renamed to 'task time' in the table that lists stages.
-rw-r--r--core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala b/core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala
index 463d85dfd5..9ad6de3c6d 100644
--- a/core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala
+++ b/core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala
@@ -48,7 +48,7 @@ private[spark] class StageTable(val stages: Seq[StageInfo], val parent: JobProgr
{if (isFairScheduler) {<th>Pool Name</th>} else {}}
<th>Description</th>
<th>Submitted</th>
- <th>Task Time</th>
+ <th>Duration</th>
<th>Tasks: Succeeded/Total</th>
<th>Shuffle Read</th>
<th>Shuffle Write</th>