aboutsummaryrefslogtreecommitdiff
path: root/sql/hive-thriftserver
diff options
context:
space:
mode:
authorMichael Armbrust <michael@databricks.com>2014-09-26 22:30:12 -0700
committerReynold Xin <rxin@apache.org>2014-09-26 22:30:12 -0700
commitd8a9d1d442dd5612f82edaf2a780579c4d43dcfd (patch)
tree44c08e1dff0feaad1d9348b019caaff9ec6fe88a /sql/hive-thriftserver
parentf0eea76d941c487763febbd9162600f89cedbd5c (diff)
downloadspark-d8a9d1d442dd5612f82edaf2a780579c4d43dcfd.tar.gz
spark-d8a9d1d442dd5612f82edaf2a780579c4d43dcfd.tar.bz2
spark-d8a9d1d442dd5612f82edaf2a780579c4d43dcfd.zip
[SPARK-3675][SQL] Allow starting a JDBC server on an existing context
Author: Michael Armbrust <michael@databricks.com> Closes #2515 from marmbrus/jdbcExistingContext and squashes the following commits: 7866fad [Michael Armbrust] Allows starting a JDBC server on an existing context.
Diffstat (limited to 'sql/hive-thriftserver')
-rw-r--r--sql/hive-thriftserver/src/main/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2.scala15
1 files changed, 14 insertions, 1 deletions
diff --git a/sql/hive-thriftserver/src/main/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2.scala b/sql/hive-thriftserver/src/main/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2.scala
index cadf7aaf42..3d468d8046 100644
--- a/sql/hive-thriftserver/src/main/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2.scala
+++ b/sql/hive-thriftserver/src/main/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2.scala
@@ -26,6 +26,7 @@ import org.apache.hive.service.cli.thrift.ThriftBinaryCLIService
import org.apache.hive.service.server.{HiveServer2, ServerOptionsProcessor}
import org.apache.spark.Logging
+import org.apache.spark.annotation.DeveloperApi
import org.apache.spark.sql.hive.HiveContext
import org.apache.spark.sql.hive.thriftserver.ReflectionUtils._
@@ -33,9 +34,21 @@ import org.apache.spark.sql.hive.thriftserver.ReflectionUtils._
* The main entry point for the Spark SQL port of HiveServer2. Starts up a `SparkSQLContext` and a
* `HiveThriftServer2` thrift server.
*/
-private[hive] object HiveThriftServer2 extends Logging {
+object HiveThriftServer2 extends Logging {
var LOG = LogFactory.getLog(classOf[HiveServer2])
+ /**
+ * :: DeveloperApi ::
+ * Starts a new thrift server with the given context.
+ */
+ @DeveloperApi
+ def startWithContext(sqlContext: HiveContext): Unit = {
+ val server = new HiveThriftServer2(sqlContext)
+ server.init(sqlContext.hiveconf)
+ server.start()
+ }
+
+
def main(args: Array[String]) {
val optionsProcessor = new ServerOptionsProcessor("HiveThriftServer2")