org.apache.hadoop.yarn.server.resourcemanager.scheduler.YarnScheduler.moveApplication()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(3.4k)|赞(0)|评价(0)|浏览(95)

本文整理了Java中org.apache.hadoop.yarn.server.resourcemanager.scheduler.YarnScheduler.moveApplication()方法的一些代码示例,展示了YarnScheduler.moveApplication()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YarnScheduler.moveApplication()方法的具体详情如下:
包路径:org.apache.hadoop.yarn.server.resourcemanager.scheduler.YarnScheduler
类名称:YarnScheduler
方法名:moveApplication

YarnScheduler.moveApplication介绍

[英]Moves the given application to the given queue
[中]将给定的应用程序移动到给定的队列

代码示例

代码示例来源:origin: org.apache.hadoop/hadoop-yarn-server-resourcemanager

/**
 * Move all apps in the set of queues to the parent plan queue's default
 * reservation queue in a synchronous fashion
 */
private void moveAppsInQueueSync(String expiredReservation,
  String defReservationQueue) {
 List<ApplicationAttemptId> activeApps =
   scheduler.getAppsInQueue(expiredReservation);
 if (activeApps.isEmpty()) {
  return;
 }
 for (ApplicationAttemptId app : activeApps) {
  // fallback to parent's default queue
  try {
   scheduler.moveApplication(app.getApplicationId(), defReservationQueue);
  } catch (YarnException e) {
   LOG.warn(
     "Encountered unexpected error during migration of application: {}"
       + " from reservation: {}",
     app, expiredReservation, e);
  }
 }
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-yarn-server-resourcemanager

public void transition(RMAppImpl app, RMAppEvent event) {
  RMAppMoveEvent moveEvent = (RMAppMoveEvent) event;
  try {
   app.queue = app.scheduler.moveApplication(app.applicationId,
     moveEvent.getTargetQueue());
  } catch (YarnException ex) {
   moveEvent.getResult().setException(ex);
   return;
  }
  
  // TODO: Write out change to state store (YARN-1558)
  // Also take care of RM failover
  moveEvent.getResult().set(null);
 }
}

代码示例来源:origin: ch.cern.hadoop/hadoop-yarn-server-resourcemanager

public void transition(RMAppImpl app, RMAppEvent event) {
  RMAppMoveEvent moveEvent = (RMAppMoveEvent) event;
  try {
   app.queue = app.scheduler.moveApplication(app.applicationId,
     moveEvent.getTargetQueue());
  } catch (YarnException ex) {
   moveEvent.getResult().setException(ex);
   return;
  }
  
  // TODO: Write out change to state store (YARN-1558)
  // Also take care of RM failover
  moveEvent.getResult().set(null);
 }
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-yarn-server-resourcemanager

/**
 * Move all apps in the set of queues to the parent plan queue's default
 * reservation queue in a synchronous fashion
 */
private void moveAppsInQueueSync(String expiredReservation,
                 String defReservationQueue) {
 List<ApplicationAttemptId> activeApps =
   scheduler.getAppsInQueue(expiredReservation);
 if (activeApps.isEmpty()) {
  return;
 }
 for (ApplicationAttemptId app : activeApps) {
  // fallback to parent's default queue
  try {
   scheduler.moveApplication(app.getApplicationId(), defReservationQueue);
  } catch (YarnException e) {
   LOG.warn(
     "Encountered unexpected error during migration of application: {}" +
       " from reservation: {}",
     app, expiredReservation, e);
  }
 }
}

代码示例来源:origin: ch.cern.hadoop/hadoop-yarn-server-resourcemanager

/**
 * Move all apps in the set of queues to the parent plan queue's default
 * reservation queue in a synchronous fashion
 */
private void moveAppsInQueueSync(String expiredReservation,
                 String defReservationQueue) {
 List<ApplicationAttemptId> activeApps =
   scheduler.getAppsInQueue(expiredReservation);
 if (activeApps.isEmpty()) {
  return;
 }
 for (ApplicationAttemptId app : activeApps) {
  // fallback to parent's default queue
  try {
   scheduler.moveApplication(app.getApplicationId(), defReservationQueue);
  } catch (YarnException e) {
   LOG.warn(
     "Encountered unexpected error during migration of application: {}" +
       " from reservation: {}",
     app, expiredReservation, e);
  }
 }
}

相关文章