Jenny (Xiao) Zhang

4 Things You Need To Know About YARN

Hadoop2.0 and YARN
What is YARN?

YARN stands for Yet Another Resource Negotiator. It is a generic resource platform for managing resources in a cluster. YARN was introduced with Hadoop 2.0, an open source distributed processing framework from Apache.

Why YARN?

The main challenges for Hadoop 1.x are Scalability, Resource Utilization and Lack of support for multiple programming models (Hadoop 1.x only supports MapReduce).

As the data Operating System for Hadoop 2.0, YARN allows multiple applications to co-exist in the same shared cluster. YARN also takes into consideration of Scalability, High utilization, support multiple programming models, flexible resource model, Security, Reliability, and compatibility. 

YARN hadoop2.0

 YARN Architecture

YARN separates the JobTracker (Hadoop 1.x) into a cluster level ResourceManager (RM) and application specific ApplicationMaster (AM). YARN architecture follows master-slave architectural model in which ResourceManager as a master and node specific slave NodeManager (NM). NodeManager replaces the TaskTracker in Hadoop 1.x.

Hadoop 1.x Job Tracker

JobTracker/TaskTracker

ResourceManager

ResourceManager/NodeManager

 

ResourceManager (RM)

ResourceManager acts as Global resource scheduler. It is responsible for resource management and scheduling per ApplicationMaster’s requests from resource requirements of the application(s). It is also responsible for management of hierarchical job queues.

ApplicationMaster (AM)

ApplicationMaster works at application level. It is responsible for application life-cycle management, negotiating appropriate resources from the Scheduler, tracking status and progress monitoring.

NodeManager (NM)

NodeManager acts as a machine agent and is responsible for management of life-cycle of the container and monitoring their resource usages.

I want to use an example here to explain the YARN architecture in detail. Please refer to the diagram below.

YARN Architure

 

A Client submits the application to the ResourceManager. In above diagram client 1 submit a MapReduce  Request and client 2 submit Shell Script Request.

  1. ResourceManager allocates a container to start up the ApplicationMaster for each application request submitted by client – one ApplicationMaster for Shell Script and one for MapReduce application.
  2. After starting a ApplicationMaster, it registers application with ResourceManager.
  3. After startup of ApplicationMaster, it negotiates with ResourceManager for appropriate resources as per the application requirement.
  4. After resource allocation from ResourceManager, ApplicationMaster requests NodeManager to launch the containers allocated by ResourceManager.
  5. On successful launching of containers, application code executes within the container. ApplicationManager reports back to ResourceManager with execution status of application.
  6. During execution of the application, client can request ApplicationMaster or directly with ResourceManager for application status, progress updates etc.
  7. On application execution process completion, ApplicationMaster request ResourceManager to unregister and shut down its own container process.
YARN Scheduler Policies

FIFO Scheduler (First in First out Scheduler)

FIFO means First in First Out – the job submitted first will get the priority to execute, in other words job runs in order of submission. FIFO does not guarantee performance efficiency as one job might be using a whole cluster for execution so all the other jobs have to wait to finish its execution.

Fair Scheduler

Fair Scheduling make sure all applications can get equal share of cluster resources over a period of time. For example if a single job is running, it will get all the resources available in the cluster. As the job number increases, free resources will be given to the jobs so that each user will get a fair share of the cluster. In Fair Scheduling policy, all jobs are placed into a job pool, specific to users. Each user gets his own job pool. A user who submitted more jobs than the other users will not get more resources on average. 

Capacity Scheduler

Capacity Scheduler is designed to allow applications to share cluster resources in a predictable and simple fashion, very commonly known as job queues. It provides capacity guarantees to support multiple queues. When job is submitted to the queue, the queue is allocated a capacity in the sense that a certain capacity of resources will be available. All the jobs submitted to the queue will access the resources allocated to the job queue. Admins can control over the capacity on each queue.

Thank you very much for reading this blog. Please feel free to contact me if you have any questions. If you want to learn more about YARN, please check out this book – YARN Essentials. I had the opportunity to review this book and it has both comprehensive introduction to key concepts of YARN and hands-on guide to install, administer, and configure settings in YARN.
YARN Essentials

YARN Essentials

Note: all the graphs in this blog come from internet.