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


Java ApplicationHistoryServer类代码示例

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


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

示例1: setup

import org.apache.hadoop.yarn.server.applicationhistoryservice.ApplicationHistoryServer; //导入依赖的package包/类
@BeforeClass
public static void setup() throws Exception {
  YarnConfiguration conf = new YarnConfiguration();
  conf.setBoolean(YarnConfiguration.TIMELINE_SERVICE_ENABLED, true);
  conf.setBoolean(YarnConfiguration.RM_SYSTEM_METRICS_PUBLISHER_ENABLED, true);
  conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STORE,
      MemoryTimelineStore.class, TimelineStore.class);
  conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STATE_STORE_CLASS,
      MemoryTimelineStateStore.class, TimelineStateStore.class);
  conf.setInt(
      YarnConfiguration.RM_SYSTEM_METRICS_PUBLISHER_DISPATCHER_POOL_SIZE,
      2);

  timelineServer = new ApplicationHistoryServer();
  timelineServer.init(conf);
  timelineServer.start();
  store = timelineServer.getTimelineStore();

  metricsPublisher = new SystemMetricsPublisher();
  metricsPublisher.init(conf);
  metricsPublisher.start();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:23,代码来源:TestSystemMetricsPublisher.java

示例2: setupServer

import org.apache.hadoop.yarn.server.applicationhistoryservice.ApplicationHistoryServer; //导入依赖的package包/类
@BeforeClass
public static void setupServer() throws Exception {
  conf = new YarnConfiguration();
  conf.setBoolean(YarnConfiguration.TIMELINE_SERVICE_ENABLED, true);
  conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STORE,
      MemoryTimelineStore.class, TimelineStore.class);
  conf.set(YarnConfiguration.YARN_HTTP_POLICY_KEY, "HTTPS_ONLY");

  File base = new File(BASEDIR);
  FileUtil.fullyDelete(base);
  base.mkdirs();
  keystoresDir = new File(BASEDIR).getAbsolutePath();
  sslConfDir =
      KeyStoreTestUtil.getClasspathDir(TestTimelineWebServicesWithSSL.class);

  KeyStoreTestUtil.setupSSLConfig(keystoresDir, sslConfDir, conf, false);
  conf.addResource("ssl-server.xml");
  conf.addResource("ssl-client.xml");

  timelineServer = new ApplicationHistoryServer();
  timelineServer.init(conf);
  timelineServer.start();
  store = timelineServer.getTimelineStore();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:25,代码来源:TestTimelineWebServicesWithSSL.java

示例3: serviceInit

import org.apache.hadoop.yarn.server.applicationhistoryservice.ApplicationHistoryServer; //导入依赖的package包/类
@Override
protected synchronized void serviceInit(Configuration conf)
    throws Exception {
  appHistoryServer = new ApplicationHistoryServer();
  conf.setClass(YarnConfiguration.APPLICATION_HISTORY_STORE,
      MemoryApplicationHistoryStore.class, ApplicationHistoryStore.class);
  conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STORE,
      MemoryTimelineStore.class, TimelineStore.class);
  conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STATE_STORE_CLASS,
      MemoryTimelineStateStore.class, TimelineStateStore.class);
  if (!useFixedPorts) {
    String hostname = MiniYARNCluster.getHostname();
    conf.set(YarnConfiguration.TIMELINE_SERVICE_ADDRESS, hostname + ":0");
    conf.set(YarnConfiguration.TIMELINE_SERVICE_WEBAPP_ADDRESS, hostname
        + ":0");
  }
  appHistoryServer.init(conf);
  super.serviceInit(conf);
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:20,代码来源:MiniYARNCluster.java

示例4: setupServer

import org.apache.hadoop.yarn.server.applicationhistoryservice.ApplicationHistoryServer; //导入依赖的package包/类
@BeforeClass
public static void setupServer() throws Exception {
  conf = new YarnConfiguration();
  conf.setBoolean(YarnConfiguration.TIMELINE_SERVICE_ENABLED, true);
  conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STORE,
      MemoryTimelineStore.class, TimelineStore.class);
  conf.set(YarnConfiguration.YARN_HTTP_POLICY_KEY, "HTTPS_ONLY");
  conf.setFloat(YarnConfiguration.TIMELINE_SERVICE_VERSION, 1.0f);

  File base = new File(BASEDIR);
  FileUtil.fullyDelete(base);
  base.mkdirs();
  keystoresDir = new File(BASEDIR).getAbsolutePath();
  sslConfDir =
      KeyStoreTestUtil.getClasspathDir(TestTimelineWebServicesWithSSL.class);

  KeyStoreTestUtil.setupSSLConfig(keystoresDir, sslConfDir, conf, false);
  conf.addResource("ssl-server.xml");
  conf.addResource("ssl-client.xml");

  timelineServer = new ApplicationHistoryServer();
  timelineServer.init(conf);
  timelineServer.start();
  store = timelineServer.getTimelineStore();
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:26,代码来源:TestTimelineWebServicesWithSSL.java

示例5: setup

import org.apache.hadoop.yarn.server.applicationhistoryservice.ApplicationHistoryServer; //导入依赖的package包/类
@BeforeClass
public static void setup() throws Exception {
  YarnConfiguration conf = new YarnConfiguration();
  conf.setBoolean(YarnConfiguration.TIMELINE_SERVICE_ENABLED, true);
  conf.setBoolean(YarnConfiguration.RM_SYSTEM_METRICS_PUBLISHER_ENABLED, true);
  conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STORE,
      MemoryTimelineStore.class, TimelineStore.class);
  conf.setInt(
      YarnConfiguration.RM_SYSTEM_METRICS_PUBLISHER_DISPATCHER_POOL_SIZE,
      2);

  timelineServer = new ApplicationHistoryServer();
  timelineServer.init(conf);
  timelineServer.start();
  store = timelineServer.getTimelineStore();

  metricsPublisher = new SystemMetricsPublisher();
  metricsPublisher.init(conf);
  metricsPublisher.start();
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:21,代码来源:TestSystemMetricsPublisher.java

示例6: serviceInit

import org.apache.hadoop.yarn.server.applicationhistoryservice.ApplicationHistoryServer; //导入依赖的package包/类
@Override
protected synchronized void serviceInit(Configuration conf)
    throws Exception {
  appHistoryServer = new ApplicationHistoryServer();
  conf.setClass(YarnConfiguration.APPLICATION_HISTORY_STORE,
      MemoryApplicationHistoryStore.class, ApplicationHistoryStore.class);
  // Only set memory timeline store if timeline v1.5 is not enabled.
  // Otherwise, caller has the freedom to choose storage impl.
  if (!TimelineUtils.timelineServiceV1_5Enabled(conf)) {
    conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STORE,
        MemoryTimelineStore.class, TimelineStore.class);
  }
  conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STATE_STORE_CLASS,
      MemoryTimelineStateStore.class, TimelineStateStore.class);
  if (!useFixedPorts) {
    String hostname = MiniYARNCluster.getHostname();
    conf.set(YarnConfiguration.TIMELINE_SERVICE_ADDRESS, hostname + ":0");
    conf.set(YarnConfiguration.TIMELINE_SERVICE_WEBAPP_ADDRESS, hostname
        + ":0");
  }
  appHistoryServer.init(conf);
  super.serviceInit(conf);
}
 
开发者ID:hopshadoop,项目名称:hops,代码行数:24,代码来源:MiniYARNCluster.java

示例7: serviceInit

import org.apache.hadoop.yarn.server.applicationhistoryservice.ApplicationHistoryServer; //导入依赖的package包/类
@Override
protected synchronized void serviceInit(Configuration conf)
    throws Exception {
  appHistoryServer = new ApplicationHistoryServer();
  conf.setClass(YarnConfiguration.APPLICATION_HISTORY_STORE,
      MemoryApplicationHistoryStore.class, ApplicationHistoryStore.class);
  conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STORE,
      MemoryTimelineStore.class, TimelineStore.class);
  conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STATE_STORE_CLASS,
      MemoryTimelineStateStore.class, TimelineStateStore.class);
  appHistoryServer.init(conf);
  super.serviceInit(conf);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:14,代码来源:MiniYARNCluster.java

示例8: serviceInit

import org.apache.hadoop.yarn.server.applicationhistoryservice.ApplicationHistoryServer; //导入依赖的package包/类
@Override
protected synchronized void serviceInit(Configuration conf)
    throws Exception {
  appHistoryServer = new ApplicationHistoryServer();
  conf.setClass(YarnConfiguration.APPLICATION_HISTORY_STORE,
      MemoryApplicationHistoryStore.class, ApplicationHistoryStore.class);
  conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STORE,
      MemoryTimelineStore.class, TimelineStore.class);
  appHistoryServer.init(conf);
  super.serviceInit(conf);
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:12,代码来源:MiniYARNCluster.java

示例9: serviceInit

import org.apache.hadoop.yarn.server.applicationhistoryservice.ApplicationHistoryServer; //导入依赖的package包/类
@Override
protected synchronized void serviceInit(Configuration conf)
    throws Exception {
    appHistoryServer = new ApplicationHistoryServer();
    conf.setClass(YarnConfiguration.APPLICATION_HISTORY_STORE,
                  MemoryApplicationHistoryStore.class, ApplicationHistoryStore.class);
    conf.setClass(YarnConfiguration.TIMELINE_SERVICE_STORE,
                  MemoryTimelineStore.class, TimelineStore.class);
    appHistoryServer.init(conf);
    super.serviceInit(conf);
}
 
开发者ID:splicemachine,项目名称:spliceengine,代码行数:12,代码来源:MiniYARNClusterSplice.java

示例10: getApplicationHistoryServer

import org.apache.hadoop.yarn.server.applicationhistoryservice.ApplicationHistoryServer; //导入依赖的package包/类
public ApplicationHistoryServer getApplicationHistoryServer() {
  return this.appHistoryServer;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:4,代码来源:MiniYARNCluster.java

示例11: getApplicationHistoryServer

import org.apache.hadoop.yarn.server.applicationhistoryservice.ApplicationHistoryServer; //导入依赖的package包/类
public ApplicationHistoryServer getApplicationHistoryServer() {
    return this.appHistoryServer;
}
 
开发者ID:splicemachine,项目名称:spliceengine,代码行数:4,代码来源:MiniYARNClusterSplice.java


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