如何配置hive服务器以远程模式运行?
我将 hive 包添加到我的 hadoop 集群中。如果我进入 hive cli,我可以在远程模式下运行 hive。但是通过 hive 服务器的查询以本地模式运行,这非常慢...我对 hive 所做的唯一更改是设置 derby 网络服务器,请遵循以下链接: http://wiki.apache.org/hadoop/HiveDerbyServerMode 我还在我的环境中导出了 HADOOP_CONF_DIR、HADOOP_HOME、HIVE_CONF_DIR、HIVE_HOME...
有人知道如何解决这个问题吗?
i added hive package to my hadoop cluster. if i go into hive cli, i can run hive in remote mode. but queries going through hive server runs in local mode which is really slow... the only changes i did to hive is to set up derby network server, following this link: http://wiki.apache.org/hadoop/HiveDerbyServerMode
i also have exported HADOOP_CONF_DIR, HADOOP_HOME, HIVE_CONF_DIR, HIVE_HOME in my environment...
anybody know how to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先按照此处的 wiki 页面进行设置: https://cwiki.apache.org /confluence/display/Hive/HiveServer
原来存在环境问题。我正在使用另一个用户运行配置单元服务器:
sudo -u 操作
但系统会在 sudo 命令下重置该用户的所有环境变量。我所做的修复是将环境变量名称放入 /etc/sudoers 中的 env_keep 中。之后,hive 服务器现在以远程模式运行。
first follow the wiki page here to get things set up: https://cwiki.apache.org/confluence/display/Hive/HiveServer
it turns out there's an environment issue. i was running hive server using another user:
sudo -u op
but the system resets all environment variables for that user under sudo command. the fix i put in is to put environment variable names in env_keep in /etc/sudoers. after that hive server is running in remote mode now.