Skip to content

Commit 37945af

Browse files
committed
Put Executor ID and Host into one cell
1 parent 4bbe2c7 commit 37945af

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

core/src/main/scala/org/apache/spark/ui/jobs/StagePage.scala

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ private[ui] class StagePage(parent: JobProgressTab) extends WebUIPage("stage") {
103103

104104
val taskHeaders: Seq[String] =
105105
Seq(
106-
"Index", "ID", "Attempt", "Status", "Locality Level", "Executor ID", "Executor",
106+
"Index", "ID", "Attempt", "Status", "Locality Level", "Executor ID / Host",
107107
"Launch Time", "Duration", "GC Time", "Accumulators") ++
108108
{if (hasInput) Seq("Input") else Nil} ++
109109
{if (hasShuffleRead) Seq("Shuffle Read") else Nil} ++
@@ -282,8 +282,7 @@ private[ui] class StagePage(parent: JobProgressTab) extends WebUIPage("stage") {
282282
}</td>
283283
<td>{info.status}</td>
284284
<td>{info.taskLocality}</td>
285-
<td>{info.executorId}</td>
286-
<td>{info.host}</td>
285+
<td>{info.executorId} / {info.host}</td>
287286
<td>{UIUtils.formatDate(new Date(info.launchTime))}</td>
288287
<td sorttable_customkey={duration.toString}>
289288
{formatDuration}

0 commit comments

Comments
 (0)