Oozie with Hadoop 2, Job hangs in “RUNNING”

眉间皱痕 提交于 2019-12-20 02:58:19

问题


I have workflow job with a java action node. Run with Hadoop 2.1.0.2.0.4.0-38 and Oozie 3.3.2.2.0.4.0 When I submit the job I see 2 lines in Hadoop Resource Manager screen. 1. with original job name 2. with Oozie job name.

The task with Oozie job name is hanging in "RUNNING" state The task with original name is in "Accepted" state. All that I see in logs is:

     >>> Invoking Main class now >>>
Heart beat
Heart beat
Heart beat
Heart beat
...

Thank you


回答1:


It seems that number of maptasks that can run in parallel are limited. Set the below property to a value higher than current value.

mapred.tasktracker.map.tasks.maximum 50

This might fix your issue.

Thanks, Sathish.



来源:https://stackoverflow.com/questions/18054557/oozie-with-hadoop-2-job-hangs-in-running

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!