hadoop mr 执行完毕,无法查看日志

时间:2020-06-06 13:18:10   收藏:0   阅读:96
Failed redirect for xxxxxxxxxxx
Failed while trying to construct the redirect url to the log server. Log Server url may not be configured Unknown container. Container either has not started or has already completed or doesn‘t belong to this node at all.

需要在mapred-site.xml 中添加
<name>mapreduce.jobhistory.address </name>
<value>hostName:10020</value>

<name>mapreduce.jobhistory.webapp.address</name>
<value>hostName:19888</value>

在 yarn-site.xml中添加

<property>
         <name>yarn.log.server.url</name>
         <value>http://hostName:19888/jobhistory/logs</value>
</property>

然后重新启动yarn,历史的不可查看。

 
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!