无法更改Hive Warehouse目录

时间:2018-06-05 23:11:21

标签: azure hive azure-data-lake

我改变了 的 hive.metastore.warehouse.dir 在ambari中的自定义hdfs位置, 更新配置文件并重新启动集群,但是当我创建表时,它们仍然只指向旧的仓库目录位置。

以前的仓库目录

/蜂巢/仓库

我的自定义仓库目录

ADL://storageaccount.azuredatalakestore.net/hivewarehouse

1 个答案:

答案 0 :(得分:-1)

我不确定你是否在寻找这个答案......如果你想创建一个存储在自定义hdfs位置的hive表...那么在创建表时使用LOCATION关键字。 例如:

Create table <name> (
a string,
b bigint)
Row format delimited
Fields terminated by ','
LOCATION '<custom HDFS location>