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


Java ApplicationsRequestScope类代码示例

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


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

示例1: setScope

import org.apache.hadoop.yarn.api.protocolrecords.ApplicationsRequestScope; //导入依赖的package包/类
public void setScope(ApplicationsRequestScope scope) {
  maybeInitBuilder();
  if (scope == null) {
    builder.clearScope();
  }
  this.scope = scope;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:8,代码来源:GetApplicationsRequestPBImpl.java

示例2: getScope

import org.apache.hadoop.yarn.api.protocolrecords.ApplicationsRequestScope; //导入依赖的package包/类
@Override
public ApplicationsRequestScope getScope() {
  initScope();
  return this.scope;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:6,代码来源:GetApplicationsRequestPBImpl.java

示例3: convertToProtoFormat

import org.apache.hadoop.yarn.api.protocolrecords.ApplicationsRequestScope; //导入依赖的package包/类
public static YarnServiceProtos.ApplicationsRequestScopeProto
    convertToProtoFormat(ApplicationsRequestScope e) {
  return YarnServiceProtos.ApplicationsRequestScopeProto.valueOf(e.name());
}
 
开发者ID:naver,项目名称:hadoop,代码行数:5,代码来源:ProtoUtils.java

示例4:

import org.apache.hadoop.yarn.api.protocolrecords.ApplicationsRequestScope; //导入依赖的package包/类
public static ApplicationsRequestScope convertFromProtoFormat
    (YarnServiceProtos.ApplicationsRequestScopeProto e) {
  return ApplicationsRequestScope.valueOf(e.name());
}
 
开发者ID:naver,项目名称:hadoop,代码行数:5,代码来源:ProtoUtils.java

示例5: testGetApplicationsRequest

import org.apache.hadoop.yarn.api.protocolrecords.ApplicationsRequestScope; //导入依赖的package包/类
@Test
public void testGetApplicationsRequest(){
  GetApplicationsRequest request = GetApplicationsRequest.newInstance();
  
  EnumSet<YarnApplicationState> appStates = 
    EnumSet.of(YarnApplicationState.ACCEPTED);
  request.setApplicationStates(appStates);
  
  Set<String> tags = new HashSet<String>();
  tags.add("tag1");
  request.setApplicationTags(tags);
  
  Set<String> types = new HashSet<String>();
  types.add("type1");
  request.setApplicationTypes(types);
  
  long startBegin = System.currentTimeMillis();
  long startEnd = System.currentTimeMillis() + 1;
  request.setStartRange(startBegin, startEnd);
  long finishBegin = System.currentTimeMillis() + 2;
  long finishEnd = System.currentTimeMillis() + 3;
  request.setFinishRange(finishBegin, finishEnd);
  
  long limit = 100L;
  request.setLimit(limit);
  
  Set<String> queues = new HashSet<String>();
  queues.add("queue1");
  request.setQueues(queues);
  
  
  Set<String> users = new HashSet<String>();
  users.add("user1");
  request.setUsers(users);
  
  ApplicationsRequestScope scope = ApplicationsRequestScope.ALL;
  request.setScope(scope);
  
  GetApplicationsRequest requestFromProto = new GetApplicationsRequestPBImpl(
      ((GetApplicationsRequestPBImpl)request).getProto());
  
  // verify the whole record equals with original record
  Assert.assertEquals(requestFromProto, request);

  // verify all properties are the same as original request
  Assert.assertEquals(
      "ApplicationStates from proto is not the same with original request",
      requestFromProto.getApplicationStates(), appStates);
  
  Assert.assertEquals(
      "ApplicationTags from proto is not the same with original request",
      requestFromProto.getApplicationTags(), tags);
  
  Assert.assertEquals(
      "ApplicationTypes from proto is not the same with original request",
      requestFromProto.getApplicationTypes(), types);
  
  Assert.assertEquals(
      "StartRange from proto is not the same with original request",
      requestFromProto.getStartRange(), new LongRange(startBegin, startEnd));
  
  Assert.assertEquals(
      "FinishRange from proto is not the same with original request",
      requestFromProto.getFinishRange(), new LongRange(finishBegin, finishEnd));
  
  Assert.assertEquals(
      "Limit from proto is not the same with original request",
      requestFromProto.getLimit(), limit);
  
  Assert.assertEquals(
      "Queues from proto is not the same with original request",
      requestFromProto.getQueues(), queues);
  
  Assert.assertEquals(
      "Users from proto is not the same with original request",
      requestFromProto.getUsers(), users);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:78,代码来源:TestGetApplicationsRequest.java


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