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

    https://github.com/apache/spark/pull/19346#discussion_r141252597
  
    --- 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 meant `id=completed-summary` looks like is basically used for ui test 
against jobs and stages pages. I can't find we actually defined a style for it. 
If you don't add a test for it in this execution page, we may not need to add 
it. 


---

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

Reply via email to