1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Spark-sqlでHiveのメタストアを使う

Last updated at Posted at 2015-12-16

Amazon EMRとかだと最初から設定されているので手間が無いのですが、Azure HDInsightとかでは紐付けされてないので、その方法。

##設定

とは言え簡単です。

基本的には、$HIVE_HOME/conf/hive-site.xmlの中のhive.metastore.urisプロパティをコピーして、$SPARK_HOME/conf/hive-site.xmlとして保存するだけ。

情報によってはhive-site.xmlをまんまコピーすればよい的な記述もあるのですが、HDInsightではいろいろな記述がhive-site.xmlにされており、そのままコピーしただけでは、無理でした。

###hive.metastore.urisの確認

HDInsightで$HIVE_HOMEは、/usr/hdp/current/hive-client/になりますので、/usr/hdp/current/hive-client/conf/hive-site.xmlを開き、hive.metastore.urisプロパティの内容を確認します。

<property>
  <name>hive.metastore.uris</name>
  <value>thrift://xxxx.cloudapp.net:9083,thrift://yyyy.cloudapp.net:9083</value>
</property>

のようにthrift経由で2つのサーバが設定されているようです。

###Sparkでの設定

root要素のconfigureと、この要素をコピーし、/usr/hdp/current/spark-client/conf/hive-site.xmlとして保存します。

##確認

上記の手順を実行したら、

spark-sql> show databases;

などとして、Hive側の設定が反映されているか確認してみてください。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?