srowen commented on a change in pull request #26384: [SPARK-29460] [WEBUI]Add
tooltip for Jobs page
URL: https://github.com/apache/spark/pull/26384#discussion_r347453384
##########
File path: core/src/main/scala/org/apache/spark/ui/jobs/AllJobsPage.scala
##########
@@ -541,20 +541,23 @@ private[ui] class JobPagedTable(
override def headers: Seq[Node] = {
// Information for each header: title, cssClass, and sortable
- val jobHeadersAndCssClasses: Seq[(String, String, Boolean)] =
+ val jobHeadersAndCssClasses: Seq[(String, String, Boolean, String)] =
Seq(
- (jobIdTitle, "", true),
- ("Description", "", true), ("Submitted", "", true), ("Duration", "",
true),
- ("Stages: Succeeded/Total", "", false),
- ("Tasks (for all stages): Succeeded/Total", "", false)
+ (jobIdTitle, "", true, ""),
+ ("Description", "", true, ""),
+ ("Submitted", "", true, ""),
+ ("Duration", "", true, "Elapsed time since the job was submitted to
the spark" +
Review comment:
Not sure about 'to the spark application' - it's the app that is submitted
to Spark. Just remove it?
till -> until
-> until completion of all its stages
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]