当前位置: 首页>>代码示例>>Java>>正文


Java AMLauncherEventType类代码示例

本文整理汇总了Java中org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType的典型用法代码示例。如果您正苦于以下问题:Java AMLauncherEventType类的具体用法?Java AMLauncherEventType怎么用?Java AMLauncherEventType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


AMLauncherEventType类属于org.apache.hadoop.yarn.server.resourcemanager.amlauncher包,在下文中一共展示了AMLauncherEventType类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: transition

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
@Override
public void transition(RMAppAttemptImpl appAttempt,
    RMAppAttemptEvent event) {

  appAttempt.progress = 1.0f;

  // Tell the app and the scheduler
  super.transition(appAttempt, event);

  // UnRegister from AMLivelinessMonitor. Perhaps for
  // FAILING/KILLED/UnManaged AMs
  appAttempt.rmContext.getAMLivelinessMonitor().unregister(
      appAttempt.getAppAttemptId());
  appAttempt.rmContext.getAMFinishingMonitor().unregister(
      appAttempt.getAppAttemptId());

  if(!appAttempt.submissionContext.getUnmanagedAM()) {
    // Tell the launcher to cleanup.
    appAttempt.eventHandler.handle(new AMLauncherEvent(
        AMLauncherEventType.CLEANUP, appAttempt));
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:23,代码来源:RMAppAttemptImpl.java

示例2: transition

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
@Override
public void transition(RMAppAttemptImpl appAttempt,
    RMAppAttemptEvent event) {

  appAttempt.progress = 1.0f;

  // Tell the app and the scheduler
  super.transition(appAttempt, event);

  // UnRegister from AMLivelinessMonitor
  appAttempt.rmContext.getAMLivelinessMonitor().unregister(
      appAttempt.getAppAttemptId());
  appAttempt.rmContext.getAMFinishingMonitor().unregister(
      appAttempt.getAppAttemptId());

  if(!appAttempt.submissionContext.getUnmanagedAM()) {
    // Tell the launcher to cleanup.
    appAttempt.eventHandler.handle(new AMLauncherEvent(
        AMLauncherEventType.CLEANUP, appAttempt));
  }
}
 
开发者ID:chendave,项目名称:hadoop-TCP,代码行数:22,代码来源:RMAppAttemptImpl.java

示例3: createAMLauncher

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
@Override
protected ApplicationMasterLauncher createAMLauncher() {
  return new ApplicationMasterLauncher(getRMContext()) {
    @Override
    protected Runnable createRunnableLauncher(RMAppAttempt application,
        AMLauncherEventType event) {
      return new AMLauncher(context, application, event, getConfig()) {
        @Override
        protected ContainerManagementProtocol getContainerMgrProxy(
            ContainerId containerId) {
          return containerManager;
        }
        @Override
        protected Token<AMRMTokenIdentifier> createAndSetAMRMToken() {
          Token<AMRMTokenIdentifier> amRmToken =
              super.createAndSetAMRMToken();
          InetSocketAddress serviceAddr =
              getConfig().getSocketAddr(
                YarnConfiguration.RM_SCHEDULER_ADDRESS,
                YarnConfiguration.DEFAULT_RM_SCHEDULER_ADDRESS,
                YarnConfiguration.DEFAULT_RM_SCHEDULER_PORT);
          SecurityUtil.setTokenService(amRmToken, serviceAddr);
          return amRmToken;
        }
      };
    }
  };
}
 
开发者ID:naver,项目名称:hadoop,代码行数:29,代码来源:MockRMWithCustomAMLauncher.java

示例4: transition

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
@Override
public void transition(RMAppAttemptImpl appAttempt,
    RMAppAttemptEvent event) {

  // Tell the application and scheduler
  super.transition(appAttempt, event);

  // Tell the launcher to cleanup.
  appAttempt.eventHandler.handle(new AMLauncherEvent(
      AMLauncherEventType.CLEANUP, appAttempt));

}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:13,代码来源:RMAppAttemptImpl.java

示例5: createAMLauncher

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
@Override
protected ApplicationMasterLauncher createAMLauncher() {
  return new ApplicationMasterLauncher(getRMContext()) {
    @Override
    protected Runnable createRunnableLauncher(RMAppAttempt application,
        AMLauncherEventType event) {
      return new AMLauncher(context, application, event, getConfig()) {
        @Override
        protected ContainerManagementProtocol getContainerMgrProxy(
            ContainerId containerId) {
          return containerManager;
        }
        @Override
        protected Token<AMRMTokenIdentifier> getAMRMToken() {
          Token<AMRMTokenIdentifier> amRmToken = super.getAMRMToken();
          InetSocketAddress serviceAddr =
              getConfig().getSocketAddr(
                YarnConfiguration.RM_SCHEDULER_ADDRESS,
                YarnConfiguration.DEFAULT_RM_SCHEDULER_ADDRESS,
                YarnConfiguration.DEFAULT_RM_SCHEDULER_PORT);
          SecurityUtil.setTokenService(amRmToken, serviceAddr);
          return amRmToken;
        }
      };
    }
  };
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:28,代码来源:MockRMWithCustomAMLauncher.java

示例6: launchAttempt

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
private void launchAttempt(){
  launchAMStartTime = System.currentTimeMillis();
  // Send event to launch the AM Container
  eventHandler.handle(new AMLauncherEvent(AMLauncherEventType.LAUNCH, this));
}
 
开发者ID:naver,项目名称:hadoop,代码行数:6,代码来源:RMAppAttemptImpl.java

示例7: testRetriesOnFailures

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
@Test
public void testRetriesOnFailures() throws Exception {
  final ContainerManagementProtocol mockProxy =
      mock(ContainerManagementProtocol.class);
  final StartContainersResponse mockResponse =
      mock(StartContainersResponse.class);
  when(mockProxy.startContainers(any(StartContainersRequest.class)))
      .thenThrow(new NMNotYetReadyException("foo")).thenReturn(mockResponse);
  Configuration conf = new Configuration();
  conf.setInt(YarnConfiguration.RM_AM_MAX_ATTEMPTS, 1);
  conf.setInt(YarnConfiguration.CLIENT_NM_CONNECT_RETRY_INTERVAL_MS, 1);
  final DrainDispatcher dispatcher = new DrainDispatcher();
  MockRM rm = new MockRMWithCustomAMLauncher(conf, null) {
    @Override
    protected ApplicationMasterLauncher createAMLauncher() {
      return new ApplicationMasterLauncher(getRMContext()) {
        @Override
        protected Runnable createRunnableLauncher(RMAppAttempt application,
            AMLauncherEventType event) {
          return new AMLauncher(context, application, event, getConfig()) {
            @Override
            protected YarnRPC getYarnRPC() {
              YarnRPC mockRpc = mock(YarnRPC.class);

              when(mockRpc.getProxy(
                  any(Class.class),
                  any(InetSocketAddress.class),
                  any(Configuration.class)))
                  .thenReturn(mockProxy);
              return mockRpc;
            }
          };
        }
      };
    }

    @Override
    protected Dispatcher createDispatcher() {
      return dispatcher;
    }
  };
  rm.start();
  MockNM nm1 = rm.registerNode("127.0.0.1:1234", 5120);

  RMApp app = rm.submitApp(2000);
  final ApplicationAttemptId appAttemptId = app.getCurrentAppAttempt()
      .getAppAttemptId();

  // kick the scheduling
  nm1.nodeHeartbeat(true);
  dispatcher.await();

  rm.waitForState(appAttemptId, RMAppAttemptState.LAUNCHED, 500);
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:55,代码来源:TestApplicationMasterLauncher.java

示例8: MyAMLauncher

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
public MyAMLauncher(RMContext rmContext, RMAppAttempt application,
    AMLauncherEventType eventType, Configuration conf) {
  super(rmContext, application, eventType, conf);
  count = 0;
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:6,代码来源:TestApplicationMasterLauncher.java

示例9: launchAttempt

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
private void launchAttempt(){
  // Send event to launch the AM Container
  eventHandler.handle(new AMLauncherEvent(AMLauncherEventType.LAUNCH, this));
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:5,代码来源:RMAppAttemptImpl.java

示例10: setUp

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
  InlineDispatcher rmDispatcher = new InlineDispatcher();

  ContainerAllocationExpirer containerAllocationExpirer =
      mock(ContainerAllocationExpirer.class);
  amLivelinessMonitor = mock(AMLivelinessMonitor.class);
  amFinishingMonitor = mock(AMLivelinessMonitor.class);
  Configuration conf = new Configuration();
  rmContext =
      new RMContextImpl(rmDispatcher,
        containerAllocationExpirer, amLivelinessMonitor, amFinishingMonitor,
        null, new AMRMTokenSecretManager(conf),
        new RMContainerTokenSecretManager(conf),
        new NMTokenSecretManagerInRM(conf),
        new ClientToAMTokenSecretManagerInRM());
  
  RMStateStore store = mock(RMStateStore.class);
  ((RMContextImpl) rmContext).setStateStore(store);
  
  scheduler = mock(YarnScheduler.class);
  masterService = mock(ApplicationMasterService.class);
  applicationMasterLauncher = mock(ApplicationMasterLauncher.class);
  
  rmDispatcher.register(RMAppAttemptEventType.class,
      new TestApplicationAttemptEventDispatcher());

  rmDispatcher.register(RMAppEventType.class,
      new TestApplicationEventDispatcher());
  
  rmDispatcher.register(SchedulerEventType.class, 
      new TestSchedulerEventDispatcher());
  
  rmDispatcher.register(AMLauncherEventType.class, 
      new TestAMLauncherEventDispatcher());

  rmDispatcher.init(conf);
  rmDispatcher.start();
  

  ApplicationId applicationId = MockApps.newAppID(appId++);
  ApplicationAttemptId applicationAttemptId =
      ApplicationAttemptId.newInstance(applicationId, 0);
  
  final String user = MockApps.newUserName();
  final String queue = MockApps.newQueue();
  submissionContext = mock(ApplicationSubmissionContext.class);
  when(submissionContext.getQueue()).thenReturn(queue);
  Resource resource = BuilderUtils.newResource(1536, 1);
  ContainerLaunchContext amContainerSpec =
      BuilderUtils.newContainerLaunchContext(null, null,
          null, null, null, null);
  when(submissionContext.getAMContainerSpec()).thenReturn(amContainerSpec);
  when(submissionContext.getResource()).thenReturn(resource);

  unmanagedAM = false;
  
  application = mock(RMApp.class);
  applicationAttempt =
      new RMAppAttemptImpl(applicationAttemptId, rmContext, scheduler,
        masterService, submissionContext, new Configuration(), user);
  when(application.getCurrentAppAttempt()).thenReturn(applicationAttempt);
  when(application.getApplicationId()).thenReturn(applicationId);
  
  testAppAttemptNewState();
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:67,代码来源:TestRMAppAttemptTransitions.java

示例11: testRetriesOnFailures

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
@Test
public void testRetriesOnFailures() throws Exception {
  final ContainerManagementProtocol mockProxy =
      mock(ContainerManagementProtocol.class);
  final StartContainersResponse mockResponse =
      mock(StartContainersResponse.class);
  when(mockProxy.startContainers(any(StartContainersRequest.class)))
      .thenThrow(new NMNotYetReadyException("foo")).thenReturn(mockResponse);
  conf.setInt(YarnConfiguration.RM_AM_MAX_ATTEMPTS, 1);
  conf.setInt(YarnConfiguration.CLIENT_NM_CONNECT_RETRY_INTERVAL_MS, 1);
  //final DrainDispatcher dispatcher = new DrainDispatcher();
  MockRM rm = new MockRMWithCustomAMLauncher(conf, null) {
    @Override
    protected ApplicationMasterLauncher createAMLauncher() {
      return new ApplicationMasterLauncher(getRMContext()) {
        @Override
        protected Runnable createRunnableLauncher(RMAppAttempt application,
            AMLauncherEventType event) {
          return new AMLauncher(context, application, event, getConfig()) {
            @Override
            protected YarnRPC getYarnRPC() {
              YarnRPC mockRpc = mock(YarnRPC.class);

              when(mockRpc.getProxy(
                  any(Class.class),
                  any(InetSocketAddress.class),
                  any(Configuration.class)))
                  .thenReturn(mockProxy);
              return mockRpc;
            }
          };
        }
      };
    }

    /*@Override
    protected Dispatcher createDispatcher() {
      return new DrainDispatcher();
    }*/
  };
  rm.start();

  MockNM nm1 = rm.registerNode("127.0.0.1:1234", 5120);

  RMApp app = rm.submitApp(2000);
  final ApplicationAttemptId appAttemptId = app.getCurrentAppAttempt()
      .getAppAttemptId();

  // kick the scheduling
  nm1.nodeHeartbeat(true);
  //dispatcher.await();
  ((DrainDispatcher) rm.getRmDispatcher()).await();

  rm.waitForState(appAttemptId, RMAppAttemptState.LAUNCHED, 500);
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:56,代码来源:TestApplicationMasterLauncher.java

示例12: setUp

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
  AuthenticationMethod authMethod = AuthenticationMethod.SIMPLE;
  if (isSecurityEnabled) {
    authMethod = AuthenticationMethod.KERBEROS;
  }
  SecurityUtil.setAuthenticationMethod(authMethod, conf);
  UserGroupInformation.setConfiguration(conf);
  InlineDispatcher rmDispatcher = new InlineDispatcher();

  ContainerAllocationExpirer containerAllocationExpirer =
      mock(ContainerAllocationExpirer.class);
  amLivelinessMonitor = mock(AMLivelinessMonitor.class);
  amFinishingMonitor = mock(AMLivelinessMonitor.class);
  rmContext =
      new RMContextImpl(rmDispatcher,
        containerAllocationExpirer, amLivelinessMonitor, amFinishingMonitor,
        null, amRMTokenManager,
        new RMContainerTokenSecretManager(conf),
        new NMTokenSecretManagerInRM(conf),
        clientToAMTokenManager);
  
  RMStateStore store = mock(RMStateStore.class);
  ((RMContextImpl) rmContext).setStateStore(store);
  
  scheduler = mock(YarnScheduler.class);
  masterService = mock(ApplicationMasterService.class);
  applicationMasterLauncher = mock(ApplicationMasterLauncher.class);
  
  rmDispatcher.register(RMAppAttemptEventType.class,
      new TestApplicationAttemptEventDispatcher());

  rmDispatcher.register(RMAppEventType.class,
      new TestApplicationEventDispatcher());
  
  rmDispatcher.register(SchedulerEventType.class, 
      new TestSchedulerEventDispatcher());
  
  rmDispatcher.register(AMLauncherEventType.class, 
      new TestAMLauncherEventDispatcher());

  rmDispatcher.init(conf);
  rmDispatcher.start();
  

  ApplicationId applicationId = MockApps.newAppID(appId++);
  ApplicationAttemptId applicationAttemptId =
      ApplicationAttemptId.newInstance(applicationId, 0);
  
  final String user = MockApps.newUserName();
  final String queue = MockApps.newQueue();
  submissionContext = mock(ApplicationSubmissionContext.class);
  when(submissionContext.getQueue()).thenReturn(queue);
  Resource resource = BuilderUtils.newResource(1536, 1);
  ContainerLaunchContext amContainerSpec =
      BuilderUtils.newContainerLaunchContext(null, null,
          null, null, null, null);
  when(submissionContext.getAMContainerSpec()).thenReturn(amContainerSpec);
  when(submissionContext.getResource()).thenReturn(resource);

  unmanagedAM = false;
  
  application = mock(RMApp.class);
  applicationAttempt =
      new RMAppAttemptImpl(applicationAttemptId, rmContext, scheduler,
        masterService, submissionContext, new Configuration(), user);
  when(application.getCurrentAppAttempt()).thenReturn(applicationAttempt);
  when(application.getApplicationId()).thenReturn(applicationId);
  
  testAppAttemptNewState();
}
 
开发者ID:chendave,项目名称:hadoop-TCP,代码行数:72,代码来源:TestRMAppAttemptTransitions.java


注:本文中的org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncherEventType类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。