标签: apache-spark hive
如何将Eclipse中本地计算机上的Spark连接到远程HiveServer?
答案 0 :(得分:0)
从远程服务器获取hive-site.xml的副本,并将其添加到$SPARK_HOME/conf
hive-site.xml
$SPARK_HOME/conf
然后,假设Spark2,您需要使用SparkSession.enableHiveSupport()方法,并且任何spark.sql()查询都应该能够与Hive通信。
SparkSession.enableHiveSupport()
spark.sql()
另见my answer here