aboutsummaryrefslogtreecommitdiff
path: root/sql/hive-thriftserver/pom.xml
diff options
context:
space:
mode:
authortianyi <tianyi.asiainfo@gmail.com>2015-05-04 16:59:34 +0800
committerCheng Lian <lian@databricks.com>2015-05-04 16:59:34 +0800
commit343d3bfafd449a0371feb6a88f78e07302fa7143 (patch)
tree496592af394123f470b6c85a24b92c33cdc7d4dc /sql/hive-thriftserver/pom.xml
parent3539cb7d20f5f878132407ec3b854011b183b2ad (diff)
downloadspark-343d3bfafd449a0371feb6a88f78e07302fa7143.tar.gz
spark-343d3bfafd449a0371feb6a88f78e07302fa7143.tar.bz2
spark-343d3bfafd449a0371feb6a88f78e07302fa7143.zip
[SPARK-5100] [SQL] add webui for thriftserver
This PR is a rebased version of #3946 , and mainly focused on creating an independent tab for the thrift server in spark web UI. Features: 1. Session related statistics ( username and IP are only supported in hive-0.13.1 ) 2. List all the SQL executing or executed on this server 3. Provide links to the job generated by SQL 4. Provide link to show all SQL executing or executed in a specified session Prototype snapshots: This is the main page for thrift server ![image](https://cloud.githubusercontent.com/assets/1411869/7361379/df7dcc64-ed89-11e4-9964-4df0b32f475e.png) Author: tianyi <tianyi.asiainfo@gmail.com> Closes #5730 from tianyi/SPARK-5100 and squashes the following commits: cfd14c7 [tianyi] style fix 0efe3d5 [tianyi] revert part of pom change c0f2fa0 [tianyi] extends HiveThriftJdbcTest to start/stop thriftserver for UI test aa20408 [tianyi] fix style problem c9df6f9 [tianyi] add testsuite for thriftserver ui and fix some style issue 9830199 [tianyi] add webui for thriftserver
Diffstat (limited to 'sql/hive-thriftserver/pom.xml')
-rw-r--r--sql/hive-thriftserver/pom.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/sql/hive-thriftserver/pom.xml b/sql/hive-thriftserver/pom.xml
index f38c796241..437f697d25 100644
--- a/sql/hive-thriftserver/pom.xml
+++ b/sql/hive-thriftserver/pom.xml
@@ -57,6 +57,18 @@
<groupId>${hive.group}</groupId>
<artifactId>hive-beeline</artifactId>
</dependency>
+ <!-- Added for selenium: -->
+ <dependency>
+ <groupId>org.seleniumhq.selenium</groupId>
+ <artifactId>selenium-java</artifactId>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>io.netty</groupId>
+ <artifactId>netty</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
</dependencies>
<build>
<outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>