aboutsummaryrefslogtreecommitdiff
path: root/streaming/src/test/scala
diff options
context:
space:
mode:
authorDavies Liu <davies@databricks.com>2016-04-12 15:03:00 -0700
committerDavies Liu <davies.liu@gmail.com>2016-04-12 15:03:00 -0700
commit1ef5f8cfa6d6b7c9ec58a96dc447ab56ef709381 (patch)
tree92e8ffb32966c7a56bd4bd9225324df33a0ed26f /streaming/src/test/scala
parent3e53de4bdd6d7b6de1fe3e5bfbdc53180aa9a737 (diff)
downloadspark-1ef5f8cfa6d6b7c9ec58a96dc447ab56ef709381.tar.gz
spark-1ef5f8cfa6d6b7c9ec58a96dc447ab56ef709381.tar.bz2
spark-1ef5f8cfa6d6b7c9ec58a96dc447ab56ef709381.zip
[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. ![ui](https://cloud.githubusercontent.com/assets/40902/14445712/68d7b258-0004-11e6-9b48-5d329b05d165.png) Author: Davies Liu <davies@databricks.com> Closes #12311 from davies/ui_perf.
Diffstat (limited to 'streaming/src/test/scala')
-rw-r--r--streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala b/streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala
index 3f12de38ef..454c3dffa3 100644
--- a/streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala
+++ b/streaming/src/test/scala/org/apache/spark/streaming/UISeleniumSuite.scala
@@ -169,9 +169,9 @@ class UISeleniumSuite
List("4/4", "4/4", "4/4", "0/4 (1 failed)"))
// Check stacktrace
- val errorCells = findAll(cssSelector(""".stacktrace-details""")).map(_.text).toSeq
+ val errorCells = findAll(cssSelector(""".stacktrace-details""")).map(_.underlying).toSeq
errorCells should have size 1
- errorCells(0) should include("java.lang.RuntimeException: Oops")
+ // Can't get the inner (invisible) text without running JS
// Check the job link in the batch page is right
go to (jobLinks(0))