Github user shahidki31 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/23024#discussion_r233554755
  
    --- Diff: core/src/main/scala/org/apache/spark/ui/jobs/ExecutorTable.scala 
---
    @@ -92,16 +93,7 @@ private[ui] class ExecutorTable(stage: StageData, store: 
AppStatusStore) {
         executorSummary.toSeq.sortBy(_._1).map { case (k, v) =>
           val executor = store.asOption(store.executorSummary(k))
           <tr>
    -        <td>
    -          <div style="float: left">{k}</div>
    -          <div style="float: right">
    -          {
    -            executor.map(_.executorLogs).getOrElse(Map.empty).map {
    -              case (logName, logUrl) => <div><a 
href={logUrl}>{logName}</a></div>
    -            }
    -          }
    -          </div>
    -        </td>
    +        <td>{if (k == "driver") k else k.toInt} </td>
    --- End diff --
    
    Thanks. I have updated.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to