2017-12-01 8 views
1

(cloudera)ハイブからハイブテーブルを作成しましたが、スパークからアクセスできず、sparkでsqlcontextを使用してテーブルを作成し、ハイブ>その逆。しかし、私はclouderaでハイブブラウザのインターフェイスの下にすべてのテーブルを表示することができます。これはあなたが火花でsqlcontextを使用してspark-shellからハイブテーブルにアクセスできない

をハイブメタストアのURLを設定しなかった場合、あなたのhive-site.xmlにこれを追加することによって、それを構成することができますどうなるスパーク

enter image description here

答えて

0

からハイブで作成したテーブルにアクセスする方法:

How to access existing table in Hive?

<?xml version="1.0"?> 
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> 
<configuration> 
    <property> 
     <name>hive.metastore.uris</name> 
     <value>thrift://host:9083</value> 
     <description>IP address (or fully-qualified domain name) and port of the metastore host</description> 
    </property> 

</configuration> 

は、別の質問に答えinmy詳細を見ます

関連する問題