Hive的CLI使用了哪个hive-site.xml

时间:2017-05-29 08:06:47

标签: linux hive command-line-interface

测试服务器包含许多hive-site.xml个文件。

我通过hive命令运行Hive的CLI。

如何识别该Hive CLI使用的hive-site.xml文件?

HIVE_CONF_DIR未设置环境变量。

1 个答案:

答案 0 :(得分:2)

执行此

hive --hiveconf hive.root.logger=DEBUG,console -e '' 2>&1 | grep hive-site.xml

演示

bash-4.1$ hive --hiveconf hive.root.logger=DEBUG,console -e '' 2>&1 | grep hive-site.xml
17/05/29 07:45:38 [main]: DEBUG common.LogUtils: Using hive-site.xml found on CLASSPATH at /etc/hive/conf.dist/hive-site.xml
bash-4.1$