探究与解决YARN Container分配过于集中的问题

最近生产上经常资源充足yarn还会将spark的executor集中分配到个别的nodemanager的问题,在网上找到了一篇有理有据的文章,推荐一下。

https://blog.csdn.net/nazeniwaresakini/article/details/105137788

答案放最前面

将YARN配置中的yarn.scheduler.fair.assignmultiple参数设为false,或者手动设定yarn.scheduler.fair.max.assign参数的值为一个较小的正数(如3或4)。

提出问题

我们在有20个节点的专用集群上运行所有Flink流式作业。为与其他大数据集群保持一致,采用的框架版本为CDH 5.13.3自带的Hadoop 2.6.0。

在开发过程中发现,Flink on YARN作业的TaskManager经常分布不均匀,集中在少量节点上。如启动了10个TaskManager的作业,可能只有3个节点分配有Container,并且分配比例是7:2:1。久而久之使得各节点的负载很倾斜,不利于平稳运行。

分析问题

以生产环境下通用的公平调度器(FairScheduler)为例,从源码简单看看YARN到底是如何分配Container的。

随NodeManager心跳分配

NodeManager每隔yarn.resourcemanager.nodemanagers.heartbeat-interval-ms参数规定的时间(默认1秒,CDH为100毫秒)向ResourceManager发送心跳事件NodeUpdateSchedulerEvent。FairScheduler会处理这个事件。

 @Override  public void handle(SchedulerEvent event) {    switch (event.getType()) {    // ...    case NODE_UPDATE:      if (!(event instanceof NodeUpdateSchedulerEvent)) {        throw new RuntimeException("Unexpected event type: " + event);      }      NodeUpdateSchedulerEvent nodeUpdatedEvent = (NodeUpdateSchedulerEvent)event;      nodeUpdate(nodeUpdatedEvent.getRMNode());      break;    // ...    }  }

在nodeUpdate()方法中,会看到从NodeManager拉取并处理Container的更新信息,包含新创建的Container与已经完成的Container,然后调用attemptScheduling()方法尝试调度分配Container。

private synchronized void nodeUpdate(RMNode nm) {    long start = getClock().getTime();    if (LOG.isDebugEnabled()) {      LOG.debug("nodeUpdate: " + nm + " cluster capacity: " + clusterResource);    }    eventLog.log("HEARTBEAT", nm.getHostName());    FSSchedulerNode node = getFSSchedulerNode(nm.getNodeID());        List<UpdatedContainerInfo> containerInfoList = nm.pullContainerUpdates();    List<ContainerStatus> newlyLaunchedContainers = new ArrayList<ContainerStatus>();    List<ContainerStatus> completedContainers = new ArrayList<ContainerStatus>();    for(UpdatedContainerInfo containerInfo : containerInfoList) {      newlyLaunchedContainers.addAll(containerInfo.getNewlyLaunchedContainers());      completedContainers.addAll(containerInfo.getCompletedContainers());    }     // Processing the newly launched containers    for (ContainerStatus launchedContainer : newlyLaunchedContainers) {      containerLaunchedOnNode(launchedContainer.getContainerId(), node);    }     // Process completed containers    for (ContainerStatus completedContainer : completedContainers) {      ContainerId containerId = completedContainer.getContainerId();      LOG.debug("Container FINISHED: " + containerId);      completedContainer(getRMContainer(containerId),          completedContainer, RMContainerEventType.FINISHED);    }     if (continuousSchedulingEnabled) {      if (!completedContainers.isEmpty()) {        attemptScheduling(node);      }    } else {      attemptScheduling(node);    }     long duration = getClock().getTime() - start;    fsOpDurations.addNodeUpdateDuration(duration);  }

可见,如果同时启用了后台线程分配(continuousSchedulingEnabled),那么随心跳分配就只有在已经完成的Container列表不为空时才会有效。下面来看看后台线程分配。

后台线程分配

如果yarn.scheduler.fair.continuous-scheduling-enabled参数为true(默认true),就会启动一个后台线程,以yarn.scheduler.fair.continuous-scheduling-sleep-ms参数的间隔(5毫秒)来分配。部分代码如下。

​​​​​​​

private class ContinuousSchedulingThread extends Thread {    @Override    public void run() {      while (!Thread.currentThread().isInterrupted()) {        try {          continuousSchedulingAttempt();          Thread.sleep(getContinuousSchedulingSleepMs());        } catch (InterruptedException e) {          LOG.warn("Continuous scheduling thread interrupted. Exiting.", e);          return;        }      }    }  }   void continuousSchedulingAttempt() throws InterruptedException {    long start = getClock().getTime();    List<NodeId> nodeIdList = new ArrayList<NodeId>(nodes.keySet());    // Sort the nodes by space available on them, so that we offer    // containers on emptier nodes first, facilitating an even spread. This    // requires holding the scheduler lock, so that the space available on a    // node doesn't change during the sort.    synchronized (this) {      Collections.sort(nodeIdList, nodeAvailableResourceComparator);    }     // iterate all nodes    for (NodeId nodeId : nodeIdList) {      FSSchedulerNode node = getFSSchedulerNode(nodeId);      try {        if (node != null && Resources.fitsIn(minimumAllocation,            node.getAvailableResource())) {          attemptScheduling(node);        }      } catch (Throwable ex) {        LOG.error("Error while attempting scheduling for node " + node +            ": " + ex.toString(), ex);        if ((ex instanceof YarnRuntimeException) &&            (ex.getCause() instanceof InterruptedException)) {          // AsyncDispatcher translates InterruptedException to          // YarnRuntimeException with cause InterruptedException.          // Need to throw InterruptedException to stop schedulingThread.          throw (InterruptedException)ex.getCause();        }      }    }     long duration = getClock().getTime() - start;    fsOpDurations.addContinuousSchedulingRunDuration(duration);  }

在continuousSchedulingAttempt()方法中,会先把所有节点按照可用资源的量排序,使得Container可以优先分配到比较空的节点上去。然后遍历排好序的节点,当节点的资源量满足Container的需求时,调用attemptScheduling()方法尝试调度分配Container。

调度分配Container

@VisibleForTesting  synchronized void attemptScheduling(FSSchedulerNode node) {    if (rmContext.isWorkPreservingRecoveryEnabled()        && !rmContext.isSchedulerReadyForAllocatingContainers()) {      return;    }     // Assign new containers...    // 1. Check for reserved applications    // 2. Schedule if there are no reservations    FSAppAttempt reservedAppSchedulable = node.getReservedAppSchedulable();    if (reservedAppSchedulable != null) {      Priority reservedPriority = node.getReservedContainer().getReservedPriority();      if (!reservedAppSchedulable.hasContainerForNode(reservedPriority, node)) {        // Don't hold the reservation if app can no longer use it        LOG.info("Releasing reservation that cannot be satisfied for application "            + reservedAppSchedulable.getApplicationAttemptId()            + " on node " + node);        reservedAppSchedulable.unreserve(reservedPriority, node);        reservedAppSchedulable = null;      } else {        // Reservation exists; try to fulfill the reservation        if (LOG.isDebugEnabled()) {          LOG.debug("Trying to fulfill reservation for application "              + reservedAppSchedulable.getApplicationAttemptId()              + " on node: " + node);        }        node.getReservedAppSchedulable().assignReservedContainer(node);      }    }    if (reservedAppSchedulable == null) {      // No reservation, schedule at queue which is farthest below fair share      int assignedContainers = 0;      while (node.getReservedContainer() == null) {        boolean assignedContainer = false;        if (!queueMgr.getRootQueue().assignContainer(node).equals(            Resources.none())) {          assignedContainers++;          assignedContainer = true;        }        if (!assignedContainer) { break; }        if (!assignMultiple) { break; }        if ((assignedContainers >= maxAssign) && (maxAssign > 0)) { break; }      }    }    updateRootQueueMetrics();  }

该方法首先检查当前是否有为本Application预留的Container资源,

如果有且在当前节点上可调度,就直接分配之。如果没有预留资源,

就尝试在YARN队列中分配Container。注意最后的那个while循环,

可以得知:

 

  • 如果assignMultiple(对应yarn.scheduler.fair.assignmultiple参数)为true,那么在成功分配一个Container后不会停止,继续尝试在当前节点上分配;

  • 在上一条的条件下,最多会连续分配maxAssign(对应yarn.scheduler.fair.max.assign参数)个Container后停止。

Hadoop默认的yarn.scheduler.fair.assignmultiple为false,亦即一次调度只分配一个Container。但是CDH将这个参数默认设为了true,并且yarn.scheduler.fair.max.assign默认为-1,表示不限制,所以会导致一次调度在单个节点上分配较多的Container。

CDH的帮助文档表示该选项有助于在大量小任务的情况下增加集群吞吐量,但很显然对于我们的情境是适得其反,故果断将yarn.scheduler.fair.assignmultiple设为false。经过实测,Container分配过于集中的问题不复存在,且性能没有受到影响。

如果确实担心有潜在影响的话,可以仍然将上一个参数保持为true,但是将yarn.scheduler.fair.max.assign设为较小的值。Cloudera Manager界面中未提供这个参数的显式设定方法,所以我们得手动将其写入yarn-site.xml的高级配置(YARN Service Advanced Configuration Snippet (Safety Valve) for yarn-site.xml)字段中。

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值