解决cdh4.5.0下 MAP任务看不到状态

参考 http://qnalist.com/questions/772595/yarn-jobhistory-service

在mapreduce-site.xml中添加

<property>
                <name>mapreduce.framework.name</name>
                <value>yarn</value>
</property>


<property>
                <name>mapreduce.jobhistory.address</name>
                <value>master:10020</value>
</property>

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

重启集群, 就可以在8088上看到任务了。

原文地址:https://www.cnblogs.com/chengxin1982/p/3847991.html