當前位置: 首頁>>代碼示例>>Java>>正文


Java YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES屬性代碼示例

本文整理匯總了Java中org.apache.hadoop.yarn.conf.YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES屬性的典型用法代碼示例。如果您正苦於以下問題:Java YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES屬性的具體用法?Java YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES怎麽用?Java YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在org.apache.hadoop.yarn.conf.YarnConfiguration的用法示例。


在下文中一共展示了YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: ContainerManagementProtocolProxy

public ContainerManagementProtocolProxy(Configuration conf,
    NMTokenCache nmTokenCache) {
  this.conf = new Configuration(conf);
  this.nmTokenCache = nmTokenCache;

  maxConnectedNMs =
      conf.getInt(YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES,
          YarnConfiguration.DEFAULT_NM_CLIENT_MAX_NM_PROXIES);
  if (maxConnectedNMs < 0) {
    throw new YarnRuntimeException(
        YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES
            + " (" + maxConnectedNMs + ") can not be less than 0.");
  }
  LOG.info(YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES + " : "
      + maxConnectedNMs);

  if (maxConnectedNMs > 0) {
    cmProxy =
        new LinkedHashMap<String, ContainerManagementProtocolProxyData>();
  } else {
    cmProxy = Collections.emptyMap();
    // Connections are not being cached so ensure connections close quickly
    // to avoid creating thousands of RPC client threads on large clusters.
    this.conf.setInt(
        CommonConfigurationKeysPublic.IPC_CLIENT_CONNECTION_MAXIDLETIME_KEY,
        0);
  }
  rpc = YarnRPC.create(conf);
}
 
開發者ID:naver,項目名稱:hadoop,代碼行數:29,代碼來源:ContainerManagementProtocolProxy.java


注:本文中的org.apache.hadoop.yarn.conf.YarnConfiguration.NM_CLIENT_MAX_NM_PROXIES屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。