FairScheduler中Fair Share计算方法

本文调度算法所采用的策略是fair策略,即公平调度算法,另外为简单起见本文只考虑了一个资源即memory.

Schedulable接口

调度器调度的是可调度类,在FairScheduler中可调度的类是实现了Schedulable接口的类,包括FSParentQueue、FSLeafQueue和FSAppAttempt.

Schedulable接口子类的重要属性:

  1. demand 该可调度对象当前所需要资源,对于叶子队列包括正在运行的应用需要的资源和没有运行应用需要的资源;
  2. minShare 一次调度过程中调度器最少分配给当前可调度对象的资源;
  3. maxShare 一次调度过程中调度器最多分配给当前可调度对象的资源;
  4. steadyFairShare也叫Steady Fair Share是调度器按照权重分配给当前可调度类资源的理论值;
  5. fairShare也叫Instantaneous Fair Share是调度器分配给当前可调度类的实际可用资源。

Fair Share(可以翻译为配额)指的都是Yarn根据每个队列的权重、最大最小可运行资源计算的得到的可以分配给这个队列的最大可用资源。Steady Fair Share属于理论值,只要集群总体资源和队列配置不变,则每个队列的Steady Fair Share值是不变的;而Instantaneous Fair Share是动态变化值,代表了运行时每个队列可使用的最大资源,在分配资源的时候除了考虑权重,还考虑了其它因素,如果当前的叶子队列没有应用的话则分配给当前叶子节点的Instantaneous Fair Share为0.
FairSchudler采用Instantaneous Fair Share进行资源的调度分配。

公平分配算法

除去锁定的资源

ComputeFairShares#computeSharesInternal用于计算所有队列的Fair share,计算之前会除去一些特殊的队列及其所占用的资源。这些特殊的队列为Fixed队列,可以理解为资源已经被锁定,不需要调度器去分配资源。除去锁定的资源的主要逻辑是在ComputeFairShares#getFairShareIfFixed这个方法中

  1. Schedulable#getMaxShare = 0 锁定资源为0,不需要被调度了;
  2. 如果是计算Instantaneous Fair Share且当前的队列不活跃(对于叶子队列来说是没有应用),锁定资源为0,不需要被调度了;
  3. 如果队列的权重weight <= 0, 该队列不需要被调度了,直接分配0或者sched#minShare了。
// ComputeFairShares#getFairShareIfFixed
private static int getFairShareIfFixed(Schedulable sched,
      boolean isSteadyShare, ResourceType type) {

    // Check if maxShare is 0
    if (getResourceValue(sched.getMaxShare(), type) <= 0) {
      return 0;
    }

    // For instantaneous fairshares, check if queue is active
    if (!isSteadyShare &&
        (sched instanceof FSQueue) && !((FSQueue)sched).isActive()) {
      return 0;
    }

    // Check if weight is 0
    if (sched.getWeights().getWeight(type) <= 0) {
      int minShare = getResourceValue(sched.getMinShare(), type);
      return (minShare <= 0) ? 0 : minShare;
    }

    return -1;
  }

分配配额

主要逻辑是在ComputeFairShares#computeSharesInternal除去锁定资源的队列之后,计算每个队列应该分到的配额(fair share).算法的核心是确定一个常数R,使得每个队列根据其Weight按照比例获得配额,每个队列获得的配额应该满足下面几个条件:

  1. 各个队列获得的配额应该等于或者无限接近于totalResource(这个总资源减去了锁定的资源);
  2. 各个队列获得的配额应该大于等于该队列的minShare;
  3. 各个队列获得的配额应该小于等于该队列的maxShare。
private static void computeSharesInternal(
      Collection<? extends Schedulable> allSchedulables,
      Resource totalResources, ResourceType type, boolean isSteadyShare) {

    Collection<Schedulable> schedulables = new ArrayList<Schedulable>();
    int takenResources = handleFixedFairShares(
        allSchedulables, schedulables, isSteadyShare, type);

    if (schedulables.isEmpty()) {
      return;
    }
    // Find an upper bound on R that we can use in our binary search. We start
    // at R = 1 and double it until we have either used all the resources or we
    // have met all Schedulables' max shares.
    int totalMaxShare = 0;
    for (Schedulable sched : schedulables) {
      int maxShare = getResourceValue(sched.getMaxShare(), type);
      totalMaxShare = (int) Math.min((long)maxShare + (long)totalMaxShare,
          Integer.MAX_VALUE);
      if (totalMaxShare == Integer.MAX_VALUE) {
        break;
      }
    }

    int totalResource = Math.max((getResourceValue(totalResources, type) -
        takenResources), 0);
    totalResource = Math.min(totalMaxShare, totalResource);

    double rMax = 1.0;
    while (resourceUsedWithWeightToResourceRatio(rMax, schedulables, type)
        < totalResource) {
      rMax *= 2.0;
    }
    // Perform the binary search for up to COMPUTE_FAIR_SHARES_ITERATIONS steps
    double left = 0;
    double right = rMax;
    for (int i = 0; i < COMPUTE_FAIR_SHARES_ITERATIONS; i++) {
      double mid = (left + right) / 2.0;
      int plannedResourceUsed = resourceUsedWithWeightToResourceRatio(
          mid, schedulables, type);
      if (plannedResourceUsed == totalResource) {
        right = mid;
        break;
      } else if (plannedResourceUsed < totalResource) {
        left = mid;
      } else {
        right = mid;
      }
    }
    // Set the fair shares based on the value of R we've converged to
    for (Schedulable sched : schedulables) {
      if (isSteadyShare) {
        setResourceValue(computeShare(sched, right, type),
            ((FSQueue) sched).getSteadyFairShare(), type);
      } else {
        setResourceValue(
            computeShare(sched, right, type), sched.getFairShare(), type);
      }
    }
  }

一个简单的栗子

配置文件fair-scheduler.xml

<?xml version="1.0"?>
<allocations>
<queue name="root" >
   <queue name="parentA" >
       <weight>8</weight>
       <queue name="childA1" />
       <queue name="childA2" />
       <queue name="childA3" />
       <queue name="childA4" />
   </queue>
   <queue name="parentB" >
       <weight>1</weight>
       <queue name="childB1" />
       <queue name="childB2" />
   </queue>
</queue>
<defaultQueueSchedulingPolicy>fair</defaultQueueSchedulingPolicy>
</allocations>

加载上面配置文件之后QueueManager中存在的队列为:

  1. 根节点 root
  2. 默认节点 root.default
  3. FSParentQueue root.parentAroot.parentB
  4. FSLeafQueue root.parentA.childA1,root.parentA.childA2,root.parentA.childA3root.parentA.childA4
  5. FSLeafQueue root.parentB.childB1root.parentB.childB2
    由于配置了权重root.parentA的权重是8,root.parentB的权重是1。这两个节点的子节点均没有配置权重取默认值1.

当前的ResourceManager一个节点没有,加入资源为<memory:16384, vCores:0>(16GB)的node1进ResourceManager,触发NODE_ADDED事件最终会调用queueMgr.getRootQueue().recomputeSteadyShares(),重新计算所有节点的Steady Fair Share,最终结果为:

root, steady_fair_share = <memory:16384, vCores:0>, fair_share = <memory:16384, vCores:0>
root.parentA, steady_fair_share = <memory:13108, vCores:0>, fair_share = <memory:0, vCores:0>
root.default, steady_fair_share = <memory:1638, vCores:0>, fair_share = <memory:0, vCores:0>
root.parentB, steady_fair_share = <memory:1638, vCores:0>, fair_share = <memory:0, vCores:0>

root.parentA.childA4, steady_fair_share = <memory:3277, vCores:0>, fair_share = <memory:0, vCores:0>
root.parentA.childA1, steady_fair_share = <memory:3277, vCores:0>, fair_share = <memory:0, vCores:0>
root.parentA.childA3, steady_fair_share = <memory:3277, vCores:0>, fair_share = <memory:0, vCores:0>
root.parentA.childA2, steady_fair_share = <memory:3277, vCores:0>, fair_share = <memory:0, vCores:0>

root.parentB.childB2, steady_fair_share = <memory:819, vCores:0>, fair_share = <memory:0, vCores:0>
root.parentB.childB1, steady_fair_share = <memory:819, vCores:0>, fair_share = <memory:0, vCores:0>

结果分析:

  1. 由于没有具体的应用每个可调度对象分到的Instantaneous Fair Share为0;
  2. root的直接子节点root.parentAroot.defaultroot.parentB按照 8:1:1的比例进行分配Steady >Fair Share
  3. root.parentA的4个子节点按照1:1:1:1的比例得到了root.parentA的所有资源;
  4. root.parentB的2个子节点按照1:1的比例得到了root.parentB的所有资源;

分配一个2GB的应用给root.parentA.childA1,会发现root.parentA.childA1Instantaneous Fair Share为16GB,其它的queue仍然为0,因为其它的queue没有应用。

上述栗子参见Hadoop源码下hadoop-yarn-project子工程下测试类

  • org.apache.hadoop.yarn.server.resourcemanager.scheduler.fair.TestFairSchedulerFairShare
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,839评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,543评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,116评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,371评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,384评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,111评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,416评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,053评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,558评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,007评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,117评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,756评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,324评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,315评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,539评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,578评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,877评论 2 345