黑猴子的家:Hive 資料倉儲位置配置

weixin_34292287發表於2018-09-28

1、Default資料倉儲

Default資料倉儲的最原始位置是在hdfs上的 /user/hive/warehouse路徑下

2、庫表關係

在倉庫目錄下,沒有對預設的資料庫default建立資料夾。如果某張表屬於default資料庫,直接在資料倉儲目錄下建立一個資料夾。

3、修改default資料倉儲原始位置

(將hive-default.xml.template如下配置資訊拷貝到hive-site.xml檔案中)

<property>
    <name>hive.metastore.warehouse.dir</name>
    <value>/user/hive/warehouse</value>
    <description>location of default database for the warehouse</description>
</property>

4、配置同組使用者有執行許可權

[victor@node1 hadoop-2.8.2]$ bin/hdfs dfs -chmod g+w /user/hive/warehouse

相關文章