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


Java JobHistory类代码示例

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


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

示例1: configureServlets

import org.apache.hadoop.mapreduce.v2.hs.JobHistory; //导入依赖的package包/类
@Override
protected void configureServlets() {

  appContext = new MockHistoryContext(0, 1, 1, 1);
  JobHistory jobHistoryService = new JobHistory();
  HistoryContext historyContext = (HistoryContext) jobHistoryService;
  webApp = new HsWebApp(historyContext);

  bind(JAXBContextResolver.class);
  bind(HsWebServices.class);
  bind(GenericExceptionHandler.class);
  bind(WebApp.class).toInstance(webApp);
  bind(AppContext.class).toInstance(appContext);
  bind(HistoryContext.class).toInstance(appContext);
  bind(Configuration.class).toInstance(conf);

  serve("/*").with(GuiceContainer.class);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:19,代码来源:TestHsWebServices.java

示例2: extractJobIDFromConfFileName

import org.apache.hadoop.mapreduce.v2.hs.JobHistory; //导入依赖的package包/类
/**
 * Extracts jobID string from the given job conf xml file name.
 * @param fileName name of the job conf xml file
 * @return job id if the given <code>fileName</code> is a valid job conf xml
 *         file name, <code>null</code> otherwise.
 */
private static String extractJobIDFromConfFileName(String fileName) {
  // History conf file name could be in one of the following formats
  // (1) old pre21 job history file name format
  // (2) new pre21 job history file name format
  // (3) current job history file name format i.e. 0.22
  String pre21JobID = applyParser(fileName,
                        Pre21JobHistoryConstants.CONF_FILENAME_REGEX_V1);
  if (pre21JobID == null) {
    pre21JobID = applyParser(fileName,
                   Pre21JobHistoryConstants.CONF_FILENAME_REGEX_V2);
  }
  if (pre21JobID != null) {
    return pre21JobID;
  }
  return applyParser(fileName, JobHistory.CONF_FILENAME_REGEX);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:23,代码来源:JobHistoryUtils.java

示例3: init

import org.apache.hadoop.mapreduce.v2.hs.JobHistory; //导入依赖的package包/类
@Before
public void init() throws HadoopIllegalArgumentException, IOException {
  conf = new JobConf();
  conf.set(JHAdminConfig.JHS_ADMIN_ADDRESS, "0.0.0.0:0");
  conf.setClass("hadoop.security.group.mapping", MockUnixGroupsMapping.class,
      GroupMappingServiceProvider.class);
  conf.setLong("hadoop.security.groups.cache.secs", groupRefreshTimeoutSec);
  Groups.getUserToGroupsMappingService(conf);
  jobHistoryService = mock(JobHistory.class);
  alds = mock(AggregatedLogDeletionService.class);

  hsAdminServer = new HSAdminServer(alds, jobHistoryService) {

    @Override
    protected Configuration createConf() {
      return conf;
    }
  };
  hsAdminServer.init(conf);
  hsAdminServer.start();
  conf.setSocketAddr(JHAdminConfig.JHS_ADMIN_ADDRESS,
      hsAdminServer.clientRpcServer.getListenerAddress());
  hsAdminClient = new HSAdmin(conf);
}
 
开发者ID:yncxcw,项目名称:FlexMap,代码行数:25,代码来源:TestHSAdminServer.java

示例4: init

import org.apache.hadoop.mapreduce.v2.hs.JobHistory; //导入依赖的package包/类
@Before
public void init() throws HadoopIllegalArgumentException, IOException {
  conf = new Configuration();
  conf.set(JHAdminConfig.JHS_ADMIN_ADDRESS, "0.0.0.0:0");
  conf.setClass("hadoop.security.group.mapping", MockUnixGroupsMapping.class,
      GroupMappingServiceProvider.class);
  conf.setLong("hadoop.security.groups.cache.secs", groupRefreshTimeoutSec);
  Groups.getUserToGroupsMappingService(conf);
  jobHistoryService = mock(JobHistory.class);
  alds = mock(AggregatedLogDeletionService.class);

  hsAdminServer = new HSAdminServer(alds, jobHistoryService) {

    @Override
    protected Configuration createConf() {
      return conf;
    }
  };
  hsAdminServer.init(conf);
  hsAdminServer.start();
  conf.setSocketAddr(JHAdminConfig.JHS_ADMIN_ADDRESS,
      hsAdminServer.clientRpcServer.getListenerAddress());
  hsAdminClient = new HSAdmin(conf);
}
 
开发者ID:Seagate,项目名称:hadoop-on-lustre2,代码行数:25,代码来源:TestHSAdminServer.java

示例5: init

import org.apache.hadoop.mapreduce.v2.hs.JobHistory; //导入依赖的package包/类
@Before
public void init() throws HadoopIllegalArgumentException, IOException {
  conf = new JobConf();
  conf.set(JHAdminConfig.JHS_ADMIN_ADDRESS, "0.0.0.0:0");
  conf.setClass("hadoop.security.group.mapping", MockUnixGroupsMapping.class,
      GroupMappingServiceProvider.class);
  conf.setLong("hadoop.security.groups.cache.secs", groupRefreshTimeoutSec);
  conf.setBoolean(
        CommonConfigurationKeysPublic.HADOOP_SECURITY_AUTHORIZATION,
        securityEnabled);
  Groups.getUserToGroupsMappingService(conf);
  jobHistoryService = mock(JobHistory.class);
  alds = mock(AggregatedLogDeletionService.class);

  hsAdminServer = new HSAdminServer(alds, jobHistoryService) {

    @Override
    protected Configuration createConf() {
      return conf;
    }
  };
  hsAdminServer.init(conf);
  hsAdminServer.start();
  conf.setSocketAddr(JHAdminConfig.JHS_ADMIN_ADDRESS,
      hsAdminServer.clientRpcServer.getListenerAddress());
  hsAdminClient = new HSAdmin(conf);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:28,代码来源:TestHSAdminServer.java

示例6: HSAdminServer

import org.apache.hadoop.mapreduce.v2.hs.JobHistory; //导入依赖的package包/类
public HSAdminServer(AggregatedLogDeletionService aggLogDelService,
    JobHistory jobHistoryService) {
  super(HSAdminServer.class.getName());
  this.aggLogDelService = aggLogDelService;
  this.jobHistoryService = jobHistoryService;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:7,代码来源:HSAdminServer.java


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