yarn中的capacity scheduler 分两个队列的配置

下面的配置的是分为两个队列default,services,其中资源的比例为:default队列80% ,services队列20%


  yarn.scheduler.capacity.root.queues
  default,services
  分为两个队列


  yarn.scheduler.capacity.root.default.capacity
  80
  default队列80%


  yarn.scheduler.capacity.root.services.capacity
  20
  services队列20%


    yarn.scheduler.capacity.root.default.maximum-capacity
    80
    Default队列可使用的资源上限.


    yarn.scheduler.capacity.root.services.maximum-capacity
    20
    services队列可使用的资源上限.

 

你可能感兴趣的:(hadoop)