yaooqinn commented on code in PR #47908:
URL: https://github.com/apache/spark/pull/47908#discussion_r1741383308
##########
core/src/main/scala/org/apache/spark/ui/UIUtils.scala:
##########
@@ -446,16 +446,24 @@ private[spark] object UIUtils extends Logging {
val startRatio = if (total == 0) 0.0 else (boundedStarted.toDouble /
total) * 100
val startWidth = "width: %s%%".format(startRatio)
+ val killTaskReasonText = reasonToNumKilled.toSeq.sortBy(-_._2).map {
+ case (reason, count) => s" ($count killed: $reason)"
+ }.mkString
+ val progressTitle = s"$completed / $total" + {
Review Comment:
```suggestion
val progressTitle = s"$completed/$total" + {
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]