Github user viirya commented on a diff in the pull request:
https://github.com/apache/spark/pull/19346#discussion_r141251711
--- Diff:
sql/core/src/main/scala/org/apache/spark/sql/execution/ui/AllExecutionsPage.scala
---
@@ -61,7 +61,36 @@ private[ui] class AllExecutionsPage(parent: SQLTab)
extends WebUIPage("") with L
details.parentNode.querySelector('.stage-details').classList.toggle('collapsed')
}}
</script>
- UIUtils.headerSparkPage("SQL", content, parent, Some(5000))
+ val summary: NodeSeq =
+ <div>
+ <ul class="unstyled">
+ {
+ if (listener.getRunningExecutions.nonEmpty) {
+ <li>
+ <a href="#running-execution-table"><strong>Running
Queries:</strong></a>
+ {listener.getRunningExecutions.size}
+ </li>
+ }
+ }
+ {
+ if (listener.getCompletedExecutions.nonEmpty) {
+ <li id="completed-summary">
--- End diff --
I can't find the style for `completed-summary`. Do we have style for it?
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]