-
- Downloads
[SPARK-14544] [SQL] improve performance of SQL UI tab
## What changes were proposed in this pull request? This PR improve the performance of SQL UI by: 1) remove the details column in all executions page (the first page in SQL tab). We can check the details by enter the execution page. 2) break-all is super slow in Chrome recently, so switch to break-word. 3) Using "display: none" to hide a block. 4) using one js closure for for all the executions, not one for each. 5) remove the height limitation of details, don't need to scroll it in the tiny window. ## How was this patch tested? Exists tests.  Author: Davies Liu <davies@databricks.com> Closes #12311 from davies/ui_perf.
Showing
- core/src/main/resources/org/apache/spark/ui/static/webui.css 5 additions, 3 deletionscore/src/main/resources/org/apache/spark/ui/static/webui.css
- sql/core/src/main/scala/org/apache/spark/sql/execution/ui/AllExecutionsPage.scala 10 additions, 30 deletions...org/apache/spark/sql/execution/ui/AllExecutionsPage.scala
- streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala 2 additions, 2 deletions...st/scala/org/apache/spark/streaming/UISeleniumSuite.scala
Please register or sign in to comment