aboutsummaryrefslogtreecommitdiff
path: root/docs/building-with-maven.md
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-08-20 12:13:31 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-08-20 12:13:31 -0700
commitf2f26c2a1dc6d60078c3be9c3d11a21866d9a24f (patch)
tree3d6789c027e3bd913561355d6bc3f3134d1f92ae /docs/building-with-maven.md
parent8c5a2226932c572898c76eb6fab9283f02ad4103 (diff)
downloadspark-f2f26c2a1dc6d60078c3be9c3d11a21866d9a24f.tar.gz
spark-f2f26c2a1dc6d60078c3be9c3d11a21866d9a24f.tar.bz2
spark-f2f26c2a1dc6d60078c3be9c3d11a21866d9a24f.zip
SPARK-3092 [SQL]: Always include the thriftserver when -Phive is enabled.
Currently we have a separate profile called hive-thriftserver. I originally suggested this in case users did not want to bundle the thriftserver, but it's ultimately lead to a lot of confusion. Since the thriftserver is only a few classes, I don't see a really good reason to isolate it from the rest of Hive. So let's go ahead and just include it in the same profile to simplify things. This has been suggested in the past by liancheng. Author: Patrick Wendell <pwendell@gmail.com> Closes #2006 from pwendell/hiveserver and squashes the following commits: 742ea40 [Patrick Wendell] Merge remote-tracking branch 'apache/master' into hiveserver 034ad47 [Patrick Wendell] SPARK-3092: Always include the thriftserver when -Phive is enabled.
Diffstat (limited to 'docs/building-with-maven.md')
-rw-r--r--docs/building-with-maven.md8
1 files changed, 2 insertions, 6 deletions
diff --git a/docs/building-with-maven.md b/docs/building-with-maven.md
index 4d87ab92ce..a7d7bd3ccb 100644
--- a/docs/building-with-maven.md
+++ b/docs/building-with-maven.md
@@ -98,12 +98,8 @@ mvn -Pyarn-alpha -Phadoop-2.3 -Dhadoop.version=2.3.0 -Dyarn.version=0.23.7 -Dski
# Building Thrift JDBC server and CLI for Spark SQL
-Spark SQL supports Thrift JDBC server and CLI.
-See sql-programming-guide.md for more information about those features.
-You can use those features by setting `-Phive-thriftserver` when building Spark as follows.
-{% highlight bash %}
-mvn -Phive-thriftserver assembly
-{% endhighlight %}
+Spark SQL supports Thrift JDBC server and CLI. See sql-programming-guide.md for
+more information about the JDBC server.
# Spark Tests in Maven