测试服务器包含许多hive-site.xml
个文件。
我通过hive
命令运行Hive的CLI。
如何识别该Hive CLI使用的hive-site.xml
文件?
HIVE_CONF_DIR
未设置环境变量。
答案 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$