pyhive 连接 Hive 时错误

2018/06/23 10:05
阅读数 158
AI总结

一、User: xx is not allowed to impersonate xxx'

解决办法:修改 core-site.xml 文件,加入下面的内容后重启 hadoop

<property>
    <name>hadoop.proxyuser.xx.hosts</name>
    <value>*</value>
</property>

<property>
    <name>hadoop.proxyuser.xx.groups</name>
    <value>*</value>
</property>

Tips:注意是 xx 不是 xxx

二、ACCEPTED: waiting for AM container to be allocated, launched and register with RM.

现象为:

  1. 查看 node 的健康状态:http://master:8088/cluster/cluster ,无活跃 node
  2. pyhive 执行 insert 命令卡住,一直处于 accept 状态。
  3. YarnApplicationState 为:ACCEPTED: waiting for AM container to be allocated, launched and register with RM.
  4. slave yarn 日志为:Retrying connect to server: 0.0.0.0/0.0.0.0:8031. Already tried 0 time(s); retry policy is...

解决办法:

切记启动 hdfs 后,要配置启动 yarn。配置如下:

 <configuration>
    <property>  
        <name>yarn.resourcemanager.address</name>  
        <value>master:8032</value>  
    </property>  
    <property>  
        <name>yarn.resourcemanager.scheduler.address</name>  
        <value>master:8030</value>  
    </property>  
    <property>  
        <name>yarn.resourcemanager.resource-tracker.address</name>  
        <value>master:8031</value>  
    </property>
    <property>
        <name>yarn.nodemanager.aux-services</name>
        <value>mapreduce_shuffle</value>
    </property>
</configuration>

本文同步分享在 博客"削微寒的程序员之路"(CNBlog)。
如有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。

展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
0 收藏
0
分享
AI总结
返回顶部
顶部