Skip to content
Snippets Groups Projects
Commit 5de326db authored by Patrick Wendell's avatar Patrick Wendell
Browse files

Print exception message

parent e721ff7e
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,7 @@ class StatsReportListener extends SparkListener with Logging {
showBytesDistribution("task result size:", (_, metric) => Some(metric.resultSize))
//runtime breakdown
val runtimePcts = stageCompleted.stageInfo.taskInfos.map{
case (info, metrics) => RuntimePercentage(info.duration, metrics)
}
......
......@@ -102,7 +102,11 @@ private[spark] class StagePage(parent: JobProgressUI) {
{Option(metrics).flatMap{m => m.shuffleWriteMetrics}.map{s =>
<td>{Utils.memoryBytesToString(s.shuffleBytesWritten)}</td>}.getOrElse("")}
<td>{exception.map(e =>
<span>{e.className}<br/>{fmtStackTrace(e.stackTrace)}</span>).getOrElse("")}</td>
<span>
{e.className} ({e.description})<br/>
{fmtStackTrace(e.stackTrace)}
</span>).getOrElse("")}
</td>
</tr>
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment