org.apache.hadoop.yarn.server.nodemanager.NodeManager.getNMStartupTime()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(2.9k)|赞(0)|评价(0)|浏览(121)

本文整理了Java中org.apache.hadoop.yarn.server.nodemanager.NodeManager.getNMStartupTime()方法的一些代码示例,展示了NodeManager.getNMStartupTime()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。NodeManager.getNMStartupTime()方法的具体详情如下:
包路径:org.apache.hadoop.yarn.server.nodemanager.NodeManager
类名称:NodeManager
方法名:getNMStartupTime

NodeManager.getNMStartupTime介绍

暂无

代码示例

代码示例来源:origin: io.hops/hadoop-yarn-server-nodemanager

public NodeInfo(final Context context, final ResourceView resourceView) {
 this.id = context.getNodeId().toString();
 this.nodeHostName = context.getNodeId().getHost();
 this.totalVmemAllocatedContainersMB = resourceView
   .getVmemAllocatedForContainers() / BYTES_IN_MB;
 this.vmemCheckEnabled = resourceView.isVmemCheckEnabled();
 this.totalPmemAllocatedContainersMB = resourceView
   .getPmemAllocatedForContainers() / BYTES_IN_MB;
 this.pmemCheckEnabled = resourceView.isPmemCheckEnabled();
 this.totalVCoresAllocatedContainers = resourceView
   .getVCoresAllocatedForContainers();
 this.totalGPUsAllocatedContainers = resourceView
   .getGPUsAllocatedForContainers();
 this.nodeHealthy = context.getNodeHealthStatus().getIsNodeHealthy();
 this.lastNodeUpdateTime = context.getNodeHealthStatus()
   .getLastHealthReportTime();
 this.healthReport = context.getNodeHealthStatus().getHealthReport();
 this.nodeManagerVersion = YarnVersionInfo.getVersion();
 this.nodeManagerBuildVersion = YarnVersionInfo.getBuildVersion();
 this.nodeManagerVersionBuiltOn = YarnVersionInfo.getDate();
 this.hadoopVersion = VersionInfo.getVersion();
 this.hadoopBuildVersion = VersionInfo.getBuildVersion();
 this.hadoopVersionBuiltOn = VersionInfo.getDate();
 this.nmStartupTime = NodeManager.getNMStartupTime();
}

代码示例来源:origin: org.apache.hadoop/hadoop-yarn-server-nodemanager

public NodeInfo(final Context context, final ResourceView resourceView) {
 this.id = context.getNodeId().toString();
 this.nodeHostName = context.getNodeId().getHost();
 this.totalVmemAllocatedContainersMB = resourceView
   .getVmemAllocatedForContainers() / BYTES_IN_MB;
 this.vmemCheckEnabled = resourceView.isVmemCheckEnabled();
 this.totalPmemAllocatedContainersMB = resourceView
   .getPmemAllocatedForContainers() / BYTES_IN_MB;
 this.pmemCheckEnabled = resourceView.isPmemCheckEnabled();
 this.totalVCoresAllocatedContainers = resourceView
   .getVCoresAllocatedForContainers();
 this.resourceTypes = StringUtils.join(", ",
   ResourceUtils.getResourcesTypeInfo());
 this.nodeHealthy = context.getNodeHealthStatus().getIsNodeHealthy();
 this.lastNodeUpdateTime = context.getNodeHealthStatus()
   .getLastHealthReportTime();
 this.healthReport = context.getNodeHealthStatus().getHealthReport();
 this.nodeManagerVersion = YarnVersionInfo.getVersion();
 this.nodeManagerBuildVersion = YarnVersionInfo.getBuildVersion();
 this.nodeManagerVersionBuiltOn = YarnVersionInfo.getDate();
 this.hadoopVersion = VersionInfo.getVersion();
 this.hadoopBuildVersion = VersionInfo.getBuildVersion();
 this.hadoopVersionBuiltOn = VersionInfo.getDate();
 this.nmStartupTime = NodeManager.getNMStartupTime();
}

相关文章