srowen commented on a change in pull request #26259: [SPARK-29453][WEBUI] 
Improve tooltips information for SQL tab.
URL: https://github.com/apache/spark/pull/26259#discussion_r339182981
 
 

 ##########
 File path: 
sql/core/src/main/scala/org/apache/spark/sql/execution/ui/AllExecutionsPage.scala
 ##########
 @@ -290,6 +290,27 @@ private[ui] class ExecutionPagedTable(
         }
       }
 
+    var headerNameWithTooltips: Map[String, String] = Map(
+      "ID" -> "Execution ID of the SQL query.",
+      "Description" -> "The description links to the query details page",
+      "Submitted" -> "Submitted",
+      "Duration" -> "Difference between start time and close time.")
+
+    if (showRunningJobs && showSucceededJobs && showFailedJobs) {
+      headerNameWithTooltips += (
+        "Running Job IDs" -> "IDs of running jobs.",
 
 Review comment:
   Likewise these don't add any info over the column name. "X ID"  is pretty 
much the same as "ID of X"

----------------------------------------------------------------
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]

Reply via email to