Problem description
Container [pid=3962,containerID=container_1632883011739_0002_01_000002] is running 270113280B beyond the ‘VIRTUAL’ memory limit.
Current usage: 91.9 MB of 1 GB physical memory used; 2.4 GB of 2.1 GB virtual memory used. Killing container.
Cause of problem
When yarn starts running, it checks the virtual memory and throws an exception.
Solution:
Modify Hadoop_Home/etc/Hadoop/yen-site.xml file
Add the following to save and exit:
1 <property> 2 <name>yarn.nodemanager.vmem-pmem-ratio</name> 3 <value>3.0</value> 4 </property>
Problem solved!