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


Java NMClientAsyncImpl类代码示例

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


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

示例1: registerNMCallbackHandler

import org.apache.hadoop.yarn.client.api.async.impl.NMClientAsyncImpl; //导入依赖的package包/类
/**
 * Register NM callback and start listening
 */
private void registerNMCallbackHandler() {
    setContainerListener(new NMCallbackHandler());
    setNmClientAsync(new NMClientAsyncImpl(getContainerListener()));
    getNmClientAsync().init(getYarnConf());
    getNmClientAsync().start();
}
 
开发者ID:ShifuML,项目名称:guagua,代码行数:10,代码来源:GuaguaAppMaster.java

示例2: ClusterScheduler

import org.apache.hadoop.yarn.client.api.async.impl.NMClientAsyncImpl; //导入依赖的package包/类
public ClusterScheduler(AppContext appContext, String trackingUrl, int rpcPort) {
  AMRMClientAsync.CallbackHandler allocListener = new RMCallbackHandler();
  this.amRmClient = AMRMClientAsync.createAMRMClientAsync(1000, allocListener);
  this.containerListener = new NMCallbackHandler(this);
  this.nmClientAsync = new NMClientAsyncImpl(containerListener);
  this.appContext = appContext;
  this.appMasterTrackingUrl = trackingUrl;
  this.appMasterRpcPort = rpcPort;
}
 
开发者ID:coderplay,项目名称:tajo-yarn,代码行数:10,代码来源:ClusterScheduler.java

示例3: YarnContainerManager

import org.apache.hadoop.yarn.client.api.async.impl.NMClientAsyncImpl; //导入依赖的package包/类
@Inject
private YarnContainerManager(
    @Parameter(YarnHeartbeatPeriod.class) final int yarnRMHeartbeatPeriod,
    @Parameter(JobSubmissionDirectory.class) final String jobSubmissionDirectory,
    final YarnConfiguration yarnConf,
    final YarnProxyUser yarnProxyUser,
    final REEFEventHandlers reefEventHandlers,
    final Containers containers,
    final ApplicationMasterRegistration registration,
    final ContainerRequestCounter containerRequestCounter,
    final DriverStatusManager driverStatusManager,
    final REEFFileNames reefFileNames,
    final TrackingURLProvider trackingURLProvider,
    final LocalAddressProvider addressProvider,
    final RackNameFormatter rackNameFormatter,
    final InjectionFuture<ProgressProvider> progressProvider) throws IOException {

  this.reefEventHandlers = reefEventHandlers;
  this.driverStatusManager = driverStatusManager;

  this.containers = containers;
  this.registration = registration;
  this.containerRequestCounter = containerRequestCounter;
  this.yarnConf = yarnConf;
  this.yarnProxyUser = yarnProxyUser;
  this.rackNameFormatter = rackNameFormatter;

  this.trackingUrl = trackingURLProvider.getTrackingUrl();
  this.amRegistrationHost = addressProvider.getLocalAddress();

  this.resourceManager = AMRMClientAsync.createAMRMClientAsync(yarnRMHeartbeatPeriod, this);
  this.nodeManager = new NMClientAsyncImpl(this);

  this.jobSubmissionDirectory = jobSubmissionDirectory;
  this.reefFileNames = reefFileNames;
  this.progressProvider = progressProvider;

  LOG.log(Level.INFO, "Instantiated YarnContainerManager: {0} {1}, trackingUrl: {3}, jobSubmissionDirectory: {4}.",
      new Object[] {this.registration, this.yarnProxyUser, this.trackingUrl, this.jobSubmissionDirectory});
}
 
开发者ID:apache,项目名称:reef,代码行数:41,代码来源:YarnContainerManager.java

示例4: setupNMConnection

import org.apache.hadoop.yarn.client.api.async.impl.NMClientAsyncImpl; //导入依赖的package包/类
private void setupNMConnection() {
  containerListener = new NMCallbackHandler(this);
  nmClientAsync = new NMClientAsyncImpl(containerListener);
  nmClientAsync.init(conf);
  nmClientAsync.start();
}
 
开发者ID:Intel-bigdata,项目名称:TensorFlowOnYARN,代码行数:7,代码来源:ApplicationMaster.java

示例5: createNMClientAsync

import org.apache.hadoop.yarn.client.api.async.impl.NMClientAsyncImpl; //导入依赖的package包/类
public static NMClientAsync createNMClientAsync(
    CallbackHandler callbackHandler) {
  return new NMClientAsyncImpl(callbackHandler);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:5,代码来源:NMClientAsync.java

示例6: createNMClientAsync

import org.apache.hadoop.yarn.client.api.async.impl.NMClientAsyncImpl; //导入依赖的package包/类
public static NMClientAsync createNMClientAsync(
    AbstractCallbackHandler callbackHandler) {
  return new NMClientAsyncImpl(callbackHandler);
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:5,代码来源:NMClientAsync.java

示例7: serviceInit

import org.apache.hadoop.yarn.client.api.async.impl.NMClientAsyncImpl; //导入依赖的package包/类
@Override
protected void serviceInit(Configuration conf) throws Exception
{
  LOG.info("Application master" + ", appId=" + appAttemptID.getApplicationId().getId() + ", clustertimestamp=" + appAttemptID.getApplicationId().getClusterTimestamp() + ", attemptId=" + appAttemptID.getAttemptId());

  FileInputStream fis = new FileInputStream("./" + LogicalPlan.SER_FILE_NAME);
  try {
    this.dag = LogicalPlan.read(fis);
  } finally {
    fis.close();
  }
  // "debug" simply dumps all data using LOG.info
  if (dag.isDebug()) {
    dumpOutDebugInfo();
  }
  dag.setAttribute(LogicalPlan.APPLICATION_ATTEMPT_ID, appAttemptID.getAttemptId());
  FSRecoveryHandler recoveryHandler = new FSRecoveryHandler(dag.assertAppPath(), conf);
  this.dnmgr = StreamingContainerManager.getInstance(recoveryHandler, dag, true);
  dag = this.dnmgr.getLogicalPlan();
  this.appContext = new ClusterAppContextImpl(dag.getAttributes());

  Map<Class<?>, Class<? extends StringCodec<?>>> codecs = dag.getAttributes().get(DAG.STRING_CODECS);
  StringCodecs.loadConverters(codecs);

  LOG.info("Starting application with {} operators in {} containers", dnmgr.getPhysicalPlan().getAllOperators().size(), dnmgr.getPhysicalPlan().getContainers().size());

  // Setup security configuration such as that for web security
  SecurityUtils.init(conf, dag.getValue(LogicalPlan.STRAM_HTTP_AUTHENTICATION));

  if (UserGroupInformation.isSecurityEnabled()) {
    // TODO :- Need to perform token renewal
    delegationTokenManager = new StramDelegationTokenManager(DELEGATION_KEY_UPDATE_INTERVAL, DELEGATION_TOKEN_MAX_LIFETIME, DELEGATION_TOKEN_RENEW_INTERVAL, DELEGATION_TOKEN_REMOVER_SCAN_INTERVAL);
  }
  this.nmClient = new NMClientAsyncImpl(new NMCallbackHandler());
  addService(nmClient);
  this.amRmClient = AMRMClient.createAMRMClient();
  addService(amRmClient);

  // start RPC server
  int rpcListenerCount = dag.getValue(DAGContext.HEARTBEAT_LISTENER_THREAD_COUNT);
  this.heartbeatListener = new StreamingContainerParent(this.getClass().getName(), dnmgr, delegationTokenManager, rpcListenerCount);
  addService(heartbeatListener);

  AutoMetric.Transport appDataPushTransport = dag.getValue(LogicalPlan.METRICS_TRANSPORT);
  if (appDataPushTransport != null) {
    this.appDataPushAgent = new AppDataPushAgent(dnmgr, appContext);
    addService(this.appDataPushAgent);
  }
  initApexPluginDispatcher();

  // Initialize all services added above
  super.serviceInit(conf);
}
 
开发者ID:apache,项目名称:apex-core,代码行数:54,代码来源:StreamingAppMasterService.java

示例8: run

import org.apache.hadoop.yarn.client.api.async.impl.NMClientAsyncImpl; //导入依赖的package包/类
/**
 * Main run function for the application master
 *
 * @throws YarnException
 * @throws IOException
 */
@SuppressWarnings({ "unchecked" })
public boolean run() throws YarnException, IOException {
  LOG.info("Starting ApplicationMaster");

  AMRMClientAsync.CallbackHandler allocListener = new RMCallbackHandler();
  resourceManager =
      AMRMClientAsync.createAMRMClientAsync(1000, allocListener);
  resourceManager.init(conf);
  resourceManager.start();

  containerListener = new NMCallbackHandler();
  nmClientAsync = new NMClientAsyncImpl(containerListener);
  nmClientAsync.init(conf);
  nmClientAsync.start();

  // Setup local RPC Server to accept status requests directly from clients
  // TODO need to setup a protocol for client to be able to communicate to
  // the RPC server
  // TODO use the rpc port info to register with the RM for the client to
  // send requests to this app master

  // Register self with ResourceManager
  // This will start heartbeating to the RM
  RegisterApplicationMasterResponse response = resourceManager
      .registerApplicationMaster(appMasterHostname, appMasterRpcPort,
          appMasterTrackingUrl);
  // Dump out information about cluster capability as seen by the
  // resource manager
  int maxMem = response.getMaximumResourceCapability().getMemory();
  LOG.info("Max mem capabililty of resources in this cluster " + maxMem);

  // A resource ask cannot exceed the max.
  if (containerMemory > maxMem) {
    LOG.info("Container memory specified above max threshold of cluster."
        + " Using max value." + ", specified=" + containerMemory + ", max="
        + maxMem);
    containerMemory = maxMem;
  }


  // Setup ask for containers from RM
  // Send request for containers to RM
  // Until we get our fully allocated quota, we keep on polling RM for
  // containers
  // Keep looping until all the containers are launched and shell script
  // executed on them ( regardless of success/failure).
  for (int i = 0; i < numTotalContainers; ++i) {
    ContainerRequest containerAsk = setupContainerAskForRM();
    resourceManager.addContainerRequest(containerAsk);
  }
  numRequestedContainers.set(numTotalContainers);

  while (!done) {
    try {
      Thread.sleep(200);
    } catch (InterruptedException ex) {}
  }
  finish();
  
  return success;
}
 
开发者ID:ict-carch,项目名称:hadoop-plus,代码行数:68,代码来源:ApplicationMaster.java

示例9: run

import org.apache.hadoop.yarn.client.api.async.impl.NMClientAsyncImpl; //导入依赖的package包/类
/**
 * Main run function for the application master
 *
 * @throws YarnException
 * @throws IOException
 */
@SuppressWarnings({ "unchecked" })
public boolean run() throws YarnException, IOException {
  LOG.info("Starting ApplicationMaster");

  Credentials credentials =
      UserGroupInformation.getCurrentUser().getCredentials();
  DataOutputBuffer dob = new DataOutputBuffer();
  credentials.writeTokenStorageToStream(dob);
  // Now remove the AM->RM token so that containers cannot access it.
  Iterator<Token<?>> iter = credentials.getAllTokens().iterator();
  while (iter.hasNext()) {
    Token<?> token = iter.next();
    if (token.getKind().equals(AMRMTokenIdentifier.KIND_NAME)) {
      iter.remove();
    }
  }
  allTokens = ByteBuffer.wrap(dob.getData(), 0, dob.getLength());

  AMRMClientAsync.CallbackHandler allocListener = new RMCallbackHandler();
  amRMClient = AMRMClientAsync.createAMRMClientAsync(1000, allocListener);
  amRMClient.init(conf);
  amRMClient.start();

  containerListener = createNMCallbackHandler();
  nmClientAsync = new NMClientAsyncImpl(containerListener);
  nmClientAsync.init(conf);
  nmClientAsync.start();

  // Setup local RPC Server to accept status requests directly from clients
  // TODO need to setup a protocol for client to be able to communicate to
  // the RPC server
  // TODO use the rpc port info to register with the RM for the client to
  // send requests to this app master

  // Register self with ResourceManager
  // This will start heartbeating to the RM
  appMasterHostname = NetUtils.getHostname();
  RegisterApplicationMasterResponse response = amRMClient
      .registerApplicationMaster(appMasterHostname, appMasterRpcPort,
          appMasterTrackingUrl);
  // Dump out information about cluster capability as seen by the
  // resource manager
  int maxMem = response.getMaximumResourceCapability().getMemory();
  LOG.info("Max mem capabililty of resources in this cluster " + maxMem);

  // A resource ask cannot exceed the max.
  if (containerMemory > maxMem) {
    LOG.info("Container memory specified above max threshold of cluster."
        + " Using max value." + ", specified=" + containerMemory + ", max="
        + maxMem);
    containerMemory = maxMem;
  }

  // Setup ask for containers from RM
  // Send request for containers to RM
  // Until we get our fully allocated quota, we keep on polling RM for
  // containers
  // Keep looping until all the containers are launched and shell script
  // executed on them ( regardless of success/failure).
  for (int i = 0; i < numTotalContainers; ++i) {
    ContainerRequest containerAsk = setupContainerAskForRM();
    amRMClient.addContainerRequest(containerAsk);
  }
  numRequestedContainers.set(numTotalContainers);

  while (!done
      && (numCompletedContainers.get() != numTotalContainers)) {
    try {
      Thread.sleep(200);
    } catch (InterruptedException ex) {}
  }
  finish();
  
  return success;
}
 
开发者ID:chendave,项目名称:hadoop-TCP,代码行数:82,代码来源:ApplicationMaster.java

示例10: run

import org.apache.hadoop.yarn.client.api.async.impl.NMClientAsyncImpl; //导入依赖的package包/类
/**
 * Main run function for the application master
 * 
 * @throws YarnException
 * @throws IOException
 */
@SuppressWarnings({ "unchecked" })
public boolean run() throws YarnException, IOException {
	LOG.info("Starting JBossApplicationMaster");

	AMRMClientAsync.CallbackHandler allocListener = new RMCallbackHandler();
	resourceManager = AMRMClientAsync.createAMRMClientAsync(1000,
			allocListener);
	resourceManager.init(conf);
	resourceManager.start();

	containerListener = new NMCallbackHandler();
	nmClientAsync = new NMClientAsyncImpl(containerListener);
	nmClientAsync.init(conf);
	nmClientAsync.start();

	RegisterApplicationMasterResponse response = resourceManager
			.registerApplicationMaster(appMasterHostname, appMasterRpcPort,
					appMasterTrackingUrl);

	int maxMem = response.getMaximumResourceCapability().getMemory();
	LOG.info("Max mem capabililty of resources in this cluster " + maxMem);

	// A resource ask cannot exceed the max.
	if (containerMemory > maxMem) {
		LOG.info("Container memory specified above max threshold of cluster."
				+ " Using max value."
				+ ", specified="
				+ containerMemory
				+ ", max=" + maxMem);
		containerMemory = maxMem;
	}

	for (int i = 0; i < numTotalContainers; ++i) {
		ContainerRequest containerAsk = setupContainerAskForRM();
		resourceManager.addContainerRequest(containerAsk);
	}
	numRequestedContainers.set(numTotalContainers);

	while (!done) {
		try {
			Thread.sleep(200);
		} catch (InterruptedException ex) {
		}
	}
	finish();

	return success;
}
 
开发者ID:kamir,项目名称:Humulus,代码行数:55,代码来源:CumulusApplicationMaster.java

示例11: testAmShutdown

import org.apache.hadoop.yarn.client.api.async.impl.NMClientAsyncImpl; //导入依赖的package包/类
@Test
public void testAmShutdown() throws IOException, YarnException {

  Assume.assumeTrue(
      "This test requires a YARN Resource Manager to connect to",
      Boolean.parseBoolean(System.getenv("REEF_TEST_YARN")));

  final YarnConfiguration yarnConfig = new YarnConfiguration();

  // Start YARN client and register the application

  final YarnClient yarnClient = YarnClient.createYarnClient();
  yarnClient.init(yarnConfig);
  yarnClient.start();

  final ContainerLaunchContext containerContext = Records.newRecord(ContainerLaunchContext.class);
  containerContext.setCommands(Collections.<String>emptyList());
  containerContext.setLocalResources(Collections.<String, LocalResource>emptyMap());
  containerContext.setEnvironment(Collections.<String, String>emptyMap());
  containerContext.setTokens(getTokens());

  final ApplicationSubmissionContext appContext = yarnClient.createApplication().getApplicationSubmissionContext();
  appContext.setApplicationName("REEF_Unmanaged_AM_Test");
  appContext.setAMContainerSpec(containerContext);
  appContext.setUnmanagedAM(true);
  appContext.setQueue("default");

  final ApplicationId applicationId = appContext.getApplicationId();
  LOG.log(Level.INFO, "Registered YARN application: {0}", applicationId);

  yarnClient.submitApplication(appContext);

  LOG.log(Level.INFO, "YARN application submitted: {0}", applicationId);

  addToken(yarnClient.getAMRMToken(applicationId));

  // Start the AM

  final AMRMClientAsync<AMRMClient.ContainerRequest> rmClient = AMRMClientAsync.createAMRMClientAsync(1000, this);
  rmClient.init(yarnConfig);
  rmClient.start();

  final NMClientAsync nmClient = new NMClientAsyncImpl(this);
  nmClient.init(yarnConfig);
  nmClient.start();

  final RegisterApplicationMasterResponse registration =
      rmClient.registerApplicationMaster(NetUtils.getHostname(), -1, null);

  LOG.log(Level.INFO, "Unmanaged AM is running: {0}", registration);

  rmClient.unregisterApplicationMaster(FinalApplicationStatus.SUCCEEDED, "Success!", null);

  LOG.log(Level.INFO, "Unregistering AM: state {0}", rmClient.getServiceState());

  // Shutdown the AM

  rmClient.stop();
  nmClient.stop();

  // Get the final application report

  final ApplicationReport appReport = yarnClient.getApplicationReport(applicationId);
  final YarnApplicationState appState = appReport.getYarnApplicationState();
  final FinalApplicationStatus finalAttemptStatus = appReport.getFinalApplicationStatus();

  LOG.log(Level.INFO, "Application {0} final attempt {1} status: {2}/{3}", new Object[] {
      applicationId, appReport.getCurrentApplicationAttemptId(), appState, finalAttemptStatus});

  Assert.assertEquals("Application must be in FINISHED state", YarnApplicationState.FINISHED, appState);
  Assert.assertEquals("Final status must be SUCCEEDED", FinalApplicationStatus.SUCCEEDED, finalAttemptStatus);

  // Shutdown YARN client

  yarnClient.stop();
}
 
开发者ID:apache,项目名称:reef,代码行数:77,代码来源:UnmanagedAmTest.java


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