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


Java ApplicationMasterLauncher类代码示例

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


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

示例1: createAMLauncher

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.ApplicationMasterLauncher; //导入依赖的package包/类
@Override
protected ApplicationMasterLauncher createAMLauncher() {
  return new ApplicationMasterLauncher(getRMContext()) {
    @Override
    protected void serviceStart() {
      // override to not start rpc handler
    }

    @Override
    public void handle(AMLauncherEvent appEvent) {
      // don't do anything
    }

    @Override
    protected void serviceStop() {
      // don't do anything
    }
  };
}
 
开发者ID:naver,项目名称:hadoop,代码行数:20,代码来源:MockRM.java

示例2: createAMLauncher

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.ApplicationMasterLauncher; //导入依赖的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

示例3: createAMLauncher

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.ApplicationMasterLauncher; //导入依赖的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

示例4: createAMLauncher

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.ApplicationMasterLauncher; //导入依赖的package包/类
protected ApplicationMasterLauncher createAMLauncher() {
  return new ApplicationMasterLauncher(this.rmContext);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:4,代码来源:ResourceManager.java

示例5: testRetriesOnFailures

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.ApplicationMasterLauncher; //导入依赖的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

示例6: setUp

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.ApplicationMasterLauncher; //导入依赖的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

示例7: testRetriesOnFailures

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.ApplicationMasterLauncher; //导入依赖的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

示例8: setUp

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.ApplicationMasterLauncher; //导入依赖的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

示例9: setUp

import org.apache.hadoop.yarn.server.resourcemanager.amlauncher.ApplicationMasterLauncher; //导入依赖的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);
  writer = mock(RMApplicationHistoryWriter.class);
  rmContext =
      new RMContextImpl(rmDispatcher,
        containerAllocationExpirer, amLivelinessMonitor, amFinishingMonitor,
        null, amRMTokenManager,
        new RMContainerTokenSecretManager(conf),
        nmTokenManager,
        clientToAMTokenManager,
        writer);
  
  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(RMAppImpl.class);
  applicationAttempt =
      new RMAppAttemptImpl(applicationAttemptId, rmContext, scheduler,
        masterService, submissionContext, new Configuration(), false);
  when(application.getCurrentAppAttempt()).thenReturn(applicationAttempt);
  when(application.getApplicationId()).thenReturn(applicationId);
  
  testAppAttemptNewState();
}
 
开发者ID:Seagate,项目名称:hadoop-on-lustre2,代码行数:74,代码来源:TestRMAppAttemptTransitions.java


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