• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java GetContainersRequest类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: testGetContainers

import org.apache.hadoop.yarn.api.protocolrecords.GetContainersRequest; //导入依赖的package包/类
@Test
public void testGetContainers() throws YarnException, IOException {
  ClientRMService rmService = createRMService();
  RecordFactory recordFactory = RecordFactoryProvider.getRecordFactory(null);
  GetContainersRequest request = recordFactory
      .newRecordInstance(GetContainersRequest.class);
  ApplicationAttemptId attemptId = ApplicationAttemptId.newInstance(
      ApplicationId.newInstance(123456, 1), 1);
  ContainerId containerId = ContainerId.newContainerId(attemptId, 1);
  request.setApplicationAttemptId(attemptId);
  try {
    GetContainersResponse response = rmService.getContainers(request);
    Assert.assertEquals(containerId, response.getContainerList().get(0)
        .getContainerId());
  } catch (ApplicationNotFoundException ex) {
    Assert.fail(ex.getMessage());
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:19,代码来源:TestClientRMService.java


示例2: testContainers

import org.apache.hadoop.yarn.api.protocolrecords.GetContainersRequest; //导入依赖的package包/类
@Test
public void testContainers() throws IOException, YarnException {
  ApplicationId appId = ApplicationId.newInstance(0, 1);
  ApplicationAttemptId appAttemptId =
      ApplicationAttemptId.newInstance(appId, 1);
  ContainerId containerId = ContainerId.newContainerId(appAttemptId, 1);
  ContainerId containerId1 = ContainerId.newContainerId(appAttemptId, 2);
  GetContainersRequest request =
      GetContainersRequest.newInstance(appAttemptId);
  GetContainersResponse response =
      clientService.getContainers(request);
  List<ContainerReport> containers = response.getContainerList();
  Assert.assertNotNull(containers);
  Assert.assertEquals(containerId, containers.get(0).getContainerId());
  Assert.assertEquals(containerId1, containers.get(1).getContainerId());
}
 
开发者ID:naver,项目名称:hadoop,代码行数:17,代码来源:TestApplicationHistoryClientService.java


示例3: testContainers

import org.apache.hadoop.yarn.api.protocolrecords.GetContainersRequest; //导入依赖的package包/类
@Test
public void testContainers() throws IOException, YarnException {
  ApplicationId appId = ApplicationId.newInstance(0, 1);
  ApplicationAttemptId appAttemptId =
      ApplicationAttemptId.newInstance(appId, 1);
  ContainerId containerId = ContainerId.newContainerId(appAttemptId, 1);
  ContainerId containerId1 = ContainerId.newContainerId(appAttemptId, 2);
  GetContainersRequest request =
      GetContainersRequest.newInstance(appAttemptId);
  GetContainersResponse response =
      clientService.getClientHandler().getContainers(request);
  List<ContainerReport> containers = response.getContainerList();
  Assert.assertNotNull(containers);
  Collections.sort(containers, new Comparator<ContainerReport>() {
    @Override
    public int compare(ContainerReport o1, ContainerReport o2) {
      return o1.getContainerId().compareTo(o2.getContainerId());
    }
  });
  Assert.assertEquals(containerId, containers.get(0).getContainerId());
  Assert.assertEquals(containerId1, containers.get(1).getContainerId());
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:23,代码来源:TestApplicationHistoryClientService.java


示例4: getContainers

import org.apache.hadoop.yarn.api.protocolrecords.GetContainersRequest; //导入依赖的package包/类
@Override
public List<ContainerReport> getContainers(
    ApplicationAttemptId applicationAttemptId) throws YarnException,
    IOException {
  try {
    GetContainersRequest request = Records
        .newRecord(GetContainersRequest.class);
    request.setApplicationAttemptId(applicationAttemptId);
    GetContainersResponse response = rmClient.getContainers(request);
    return response.getContainerList();
  } catch (YarnException e) {
    if (!historyServiceEnabled) {
      // Just throw it as usual if historyService is not enabled.
      throw e;
    }
    // Even if history-service is enabled, treat all exceptions still the same
    // except the following
    if (e.getClass() != ApplicationNotFoundException.class) {
      throw e;
    }
    return historyClient.getContainers(applicationAttemptId);
  }
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:24,代码来源:YarnClientImpl.java


示例5: testGetContainers

import org.apache.hadoop.yarn.api.protocolrecords.GetContainersRequest; //导入依赖的package包/类
@Test
public void testGetContainers() throws YarnException, IOException {
  ClientRMService rmService = createRMService();
  RecordFactory recordFactory = RecordFactoryProvider.getRecordFactory(null);
  GetContainersRequest request = recordFactory
      .newRecordInstance(GetContainersRequest.class);
  ApplicationAttemptId attemptId = ApplicationAttemptId.newInstance(
      ApplicationId.newInstance(123456, 1), 1);
  ContainerId containerId = ContainerId.newInstance(attemptId, 1);
  request.setApplicationAttemptId(attemptId);
  try {
    GetContainersResponse response = rmService.getContainers(request);
    Assert.assertEquals(containerId, response.getContainerList().get(0)
        .getContainerId());
  } catch (ApplicationNotFoundException ex) {
    Assert.fail(ex.getMessage());
  }
}
 
开发者ID:Seagate,项目名称:hadoop-on-lustre2,代码行数:19,代码来源:TestClientRMService.java


示例6: testContainers

import org.apache.hadoop.yarn.api.protocolrecords.GetContainersRequest; //导入依赖的package包/类
@Test
public void testContainers() throws IOException, YarnException {
  ApplicationId appId = ApplicationId.newInstance(0, 1);
  writeApplicationStartData(appId);
  ApplicationAttemptId appAttemptId =
      ApplicationAttemptId.newInstance(appId, 1);
  ContainerId containerId = ContainerId.newInstance(appAttemptId, 1);
  ContainerId containerId1 = ContainerId.newInstance(appAttemptId, 2);
  writeContainerStartData(containerId);
  writeContainerFinishData(containerId);
  writeContainerStartData(containerId1);
  writeContainerFinishData(containerId1);
  writeApplicationFinishData(appId);
  GetContainersRequest request =
      GetContainersRequest.newInstance(appAttemptId);
  GetContainersResponse response =
      historyServer.getClientService().getClientHandler()
        .getContainers(request);
  List<ContainerReport> containers = response.getContainerList();
  Assert.assertNotNull(containers);
  Assert.assertEquals(containerId, containers.get(1).getContainerId());
  Assert.assertEquals(containerId1, containers.get(0).getContainerId());
}
 
开发者ID:Seagate,项目名称:hadoop-on-lustre2,代码行数:24,代码来源:TestApplicationHistoryClientService.java


示例7: getContainers

import org.apache.hadoop.yarn.api.protocolrecords.GetContainersRequest; //导入依赖的package包/类
@Override
public GetContainersResponse getContainers(GetContainersRequest request)
    throws YarnException, IOException {
  GetContainersRequestProto requestProto =
      ((GetContainersRequestPBImpl) request).getProto();
  try {
    return new GetContainersResponsePBImpl(proxy.getContainers(null,
      requestProto));
  } catch (ServiceException e) {
    RPCUtil.unwrapAndThrowException(e);
    return null;
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:14,代码来源:ApplicationHistoryProtocolPBClientImpl.java


示例8: getContainers

import org.apache.hadoop.yarn.api.protocolrecords.GetContainersRequest; //导入依赖的package包/类
@Override
public GetContainersResponse getContainers(GetContainersRequest request)
    throws YarnException, IOException {
  GetContainersResponse response =
      GetContainersResponse.newInstance(new ArrayList<ContainerReport>(
        history.getContainers(request.getApplicationAttemptId()).values()));
  return response;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:9,代码来源:ApplicationHistoryClientService.java


示例9: getContainers

import org.apache.hadoop.yarn.api.protocolrecords.GetContainersRequest; //导入依赖的package包/类
@Override
public List<ContainerReport> getContainers(
    ApplicationAttemptId applicationAttemptId) throws YarnException,
    IOException {
  GetContainersRequest request = GetContainersRequest
      .newInstance(applicationAttemptId);
  GetContainersResponse response = ahsClient.getContainers(request);
  return response.getContainerList();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:10,代码来源:AHSClientImpl.java


示例10: getContainers

import org.apache.hadoop.yarn.api.protocolrecords.GetContainersRequest; //导入依赖的package包/类
@Override
public GetContainersResponse getContainers(GetContainersRequest request)
    throws YarnException, IOException {
  resetStartFailoverFlag(true);

  // make sure failover has been triggered
  Assert.assertTrue(waittingForFailOver());

  // return fake ContainerReports
  return GetContainersResponse.newInstance(createFakeContainerReports());
}
 
开发者ID:naver,项目名称:hadoop,代码行数:12,代码来源:ProtocolHATestBase.java


示例11: getNodesWithCompletedAttempt

import org.apache.hadoop.yarn.api.protocolrecords.GetContainersRequest; //导入依赖的package包/类
/**
 * Get the list of nodes completed the application attempt
 * @param applicationAttemptId
 * @return
 * @throws YarnException
 * @throws IOException
 */
public Set<String> getNodesWithCompletedAttempt(ApplicationAttemptId applicationAttemptId) throws YarnException, IOException{
	Set<String> nodes = new HashSet<String>();
	GetContainersResponse response = proxy.getContainers(GetContainersRequest.newInstance(applicationAttemptId));
	List<ContainerReport> containers = response.getContainerList();
	for(ContainerReport container: containers){
		if(ContainerState.COMPLETE.equals(container.getContainerState())){
				nodes.add(container.getAssignedNode().getHost());
		}
	}
	return nodes;
}
 
开发者ID:Impetus,项目名称:jumbune,代码行数:19,代码来源:RMCommunicator.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java Compiler类代码示例发布时间:2022-05-22
下一篇:
Java EntryUnit类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap