Hadoop Mapper is failing because of “Container killed by the ApplicationMaster”

后端 未结 2 1766
温柔的废话
温柔的废话 2020-12-30 04:27

I am trying to execute a map reduce program on Hadoop.

When i submit my job to the hadoop single node cluster. The job is getting created but failing with the messag

2条回答
  •  一生所求
    2020-12-30 05:03

    Include below properties in yarn-site.xml and restart VM,

    
       yarn.nodemanager.vmem-check-enabled
       false
       Whether virtual memory limits will be enforced for containers
    
    
    
       yarn.nodemanager.vmem-pmem-ratio
       4
       Ratio between virtual memory to physical memory when setting memory limits for containers
    
    

提交回复
热议问题