码迷,mamicode.com
首页 > 其他好文 > 详细

Hadoop Yarn core concepts

时间:2015-04-24 07:53:21      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

   

The fundamental idea of YARN is to split the two major responsibilities of the JobTracker—that is, resource management and job scheduling/monitoring—into separate

daemons: a global ResourceManager and a per-application ApplicationMaster (AM).

The ResourceManager and per-node slave, the NodeManager (NM), form the new,

and generic,operating system for managing applications in a distributed manner.

   

The NodeManager is the per-machine slave, which is responsible for launching the

applications‘ containers, monitoring their resource usage (CPU, memory, disk, network), and reporting the same to the ResourceManager.

The ApplicationMaster is, in effect, an instanceof a framework-specific libraryand is responsible for negotiating resources from the ResourceManager and working with the NodeManager(s) to

execute and monitor the containers and their resource consumption. It has the responsibility of negotiating for appropriate resource containers from the ResourceManager,

tracking their status, and monitoring progress.

   

技术分享

   

技术分享

Hadoop Yarn core concepts

标签:

原文地址:http://www.cnblogs.com/huaxiaoyao/p/4452373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!