Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Resource Management in Yarn - Container pending problem ...

avatar
Expert Contributor

Dear All,

I am facing some strange behaviour.

My setup: 3 Node Yarn Cluster (8GB Memory each Node / CentOS7 / AWS Installation)

When firing up a simple M/R Job through Pig, the application started with 2 containers but is "pending" getting the 3rd Container from the Node Manager.

When I look at the 3 Nodes in Unix I see the following:

1841-bildschirmfoto-2016-02-05-um-165311.png

My Mappers are setup to consume 1,5 GB Containers, My Reducers to consume 2GB

As what I can see immediately, is that there obviously is no free space available for starting the 3rd container, but there is lots of space available in the buff/cache that I was hoping is used by yarn too for firing up containers.

Am I missing something?

Br,

Rainer

3 REPLIES 3

avatar
Expert Contributor

After a cluster restart it worked ... will continue to trace why that happened ...

avatar
Master Mentor
@Rainer Geissendoerfer

There is high possibility that previous running jobs did not free up the resources. You should configure CS queues to implement true multitenancy otherwise, 1 job will hog the whole cluster and other jobs will wait until job1 finishes.

avatar
Master Guru

I think there is a misunderstanding in what yarn does. It doesn't care at all how much memory is available on the Linux machines. Or about buffers or caches It only cares about the settings in the yarn configuration. You can check them in Ambari.It is your responsibility to set them correctly so they fit to the system.

You can find on the yarn page of ambari:

- The total amount of RAM available to yarn on any one datanode. This is estimated by ambari during the installation but in the end your responsibility.

- The min size of a container. ( this is also the common divider of container sizes )

- the max size of a container ( normally yarn max is a good idea )

So lets assume you have a 3 node cluster with 32GB of RAM on each and yarn memory has been set to 24GB ( leaving 8 to OS plus HDFS )

Lets also assume your min container size is 1GB.

This gives you 24GB * 3 = 72GB in total for yarn and at most 72 containers.

A couple important things:

- If you set your map settings to 1.5GB you have at most 36 containers since yarn only gives out slots in multiples of the minimum ( i.e. 2GB, 3GB 4GB, ... ) This is a common problem. So always set your container sizes as multiple of the min.

-If you have only 16GB on the nodes and you set the yarn memory to 32GB, yarn will happily bring your system into outofmemory.

It is your responsibility to configure it correctly so it uses the available RAM but not more

What yarn does is to shoot down any task that uses more than its requested amount of RAM and to schedule tasks so they are running locally to data etc. pp.