1.kylin配置 hive 使用beeline时出现异常
在默认的配置文件中提示配置应为一下内容,但是配置后出现异常
kylin.source.hive.client=beeline
kylin.source.hive.beeline-params=-n root --hiveconf hive.security.authorization.sqlstd.confwhitelist.append='mapreduce.job.*|dfs.*' -u jdbc:hive2://bd005:10000
但是按照默认的配置后出现异常:找不到hive的配置文件
Couldn't find hive configuration directory. Please set HIVE_CONF to the path which contains hive-site.xml.
异常分析:不能识别配置后的beeline,默认配置文件,没有添加该属性造成误导
解决:按照官网啥的最新配置问题得到解决
查看官网上hive配置:
kylin.source.hive.beeline-shell=beeline
kylin.source.hive.beeline-params=-n root --hiveconf hive.security.authorization.sqlstd.confwhitelist.append='mapreduce.job.*|dfs.*' -u jdbc:hive2://bd005:10000