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


Java DatanodeDescriptor.getVolumeFailureSummary方法代码示例

本文整理汇总了Java中org.apache.hadoop.hdfs.server.blockmanagement.DatanodeDescriptor.getVolumeFailureSummary方法的典型用法代码示例。如果您正苦于以下问题:Java DatanodeDescriptor.getVolumeFailureSummary方法的具体用法?Java DatanodeDescriptor.getVolumeFailureSummary怎么用?Java DatanodeDescriptor.getVolumeFailureSummary使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.hadoop.hdfs.server.blockmanagement.DatanodeDescriptor的用法示例。


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

示例1: checkFailuresAtNameNode

import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeDescriptor; //导入方法依赖的package包/类
/**
 * Checks NameNode tracking of a particular DataNode for correct reporting of
 * failed volumes.
 *
 * @param dm DatanodeManager to check
 * @param dn DataNode to check
 * @param expectCapacityKnown if true, then expect that the capacities of the
 *     volumes were known before the failures, and therefore the lost capacity
 *     can be reported
 * @param expectedFailedVolumes expected locations of failed volumes
 * @throws Exception if there is any failure
 */
private void checkFailuresAtNameNode(DatanodeManager dm, DataNode dn,
    boolean expectCapacityKnown, String... expectedFailedVolumes)
    throws Exception {
  DatanodeDescriptor dd = cluster.getNamesystem().getBlockManager()
      .getDatanodeManager().getDatanode(dn.getDatanodeId());
  assertEquals(expectedFailedVolumes.length, dd.getVolumeFailures());
  VolumeFailureSummary volumeFailureSummary = dd.getVolumeFailureSummary();
  if (expectedFailedVolumes.length > 0) {
    assertArrayEquals(expectedFailedVolumes, volumeFailureSummary
        .getFailedStorageLocations());
    assertTrue(volumeFailureSummary.getLastVolumeFailureDate() > 0);
    long expectedCapacityLost = getExpectedCapacityLost(expectCapacityKnown,
        expectedFailedVolumes.length);
    assertEquals(expectedCapacityLost,
        volumeFailureSummary.getEstimatedCapacityLostTotal());
  } else {
    assertNull(volumeFailureSummary);
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:32,代码来源:TestDataNodeVolumeFailureReporting.java

示例2: getEstimatedCapacityLostTotal

import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeDescriptor; //导入方法依赖的package包/类
@Override // FSNamesystemMBean
public long getEstimatedCapacityLostTotal() {
  List<DatanodeDescriptor> live = new ArrayList<DatanodeDescriptor>();
  getBlockManager().getDatanodeManager().fetchDatanodes(live, null, true);
  long estimatedCapacityLostTotal = 0;
  for (DatanodeDescriptor node: live) {
    VolumeFailureSummary volumeFailureSummary = node.getVolumeFailureSummary();
    if (volumeFailureSummary != null) {
      estimatedCapacityLostTotal +=
          volumeFailureSummary.getEstimatedCapacityLostTotal();
    }
  }
  return estimatedCapacityLostTotal;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:15,代码来源:FSNamesystem.java

示例3: getEstimatedCapacityLostTotal

import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeDescriptor; //导入方法依赖的package包/类
@Override // FSNamesystemMBean
public long getEstimatedCapacityLostTotal() {
  List<DatanodeDescriptor> live = new ArrayList<DatanodeDescriptor>();
  getBlockManager().getDatanodeManager().fetchDatanodes(live, null, false);
  long estimatedCapacityLostTotal = 0;
  for (DatanodeDescriptor node: live) {
    VolumeFailureSummary volumeFailureSummary = node.getVolumeFailureSummary();
    if (volumeFailureSummary != null) {
      estimatedCapacityLostTotal +=
          volumeFailureSummary.getEstimatedCapacityLostTotal();
    }
  }
  return estimatedCapacityLostTotal;
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:15,代码来源:FSNamesystem.java

示例4: getLiveNodes

import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeDescriptor; //导入方法依赖的package包/类
/**
 * Returned information is a JSON representation of map with host name as the
 * key and value is a map of live node attribute keys to its values
 */
@Override // NameNodeMXBean
public String getLiveNodes() {
  final Map<String, Map<String,Object>> info = 
    new HashMap<String, Map<String,Object>>();
  final List<DatanodeDescriptor> live = new ArrayList<DatanodeDescriptor>();
  blockManager.getDatanodeManager().fetchDatanodes(live, null, true);
  for (DatanodeDescriptor node : live) {
    ImmutableMap.Builder<String, Object> innerinfo =
        ImmutableMap.<String,Object>builder();
    innerinfo
        .put("infoAddr", node.getInfoAddr())
        .put("infoSecureAddr", node.getInfoSecureAddr())
        .put("xferaddr", node.getXferAddr())
        .put("lastContact", getLastContact(node))
        .put("usedSpace", getDfsUsed(node))
        .put("adminState", node.getAdminState().toString())
        .put("nonDfsUsedSpace", node.getNonDfsUsed())
        .put("capacity", node.getCapacity())
        .put("numBlocks", node.numBlocks())
        .put("version", node.getSoftwareVersion())
        .put("used", node.getDfsUsed())
        .put("remaining", node.getRemaining())
        .put("blockScheduled", node.getBlocksScheduled())
        .put("blockPoolUsed", node.getBlockPoolUsed())
        .put("blockPoolUsedPercent", node.getBlockPoolUsedPercent())
        .put("volfails", node.getVolumeFailures());
    VolumeFailureSummary volumeFailureSummary = node.getVolumeFailureSummary();
    if (volumeFailureSummary != null) {
      innerinfo
          .put("failedStorageLocations",
              volumeFailureSummary.getFailedStorageLocations())
          .put("lastVolumeFailureDate",
              volumeFailureSummary.getLastVolumeFailureDate())
          .put("estimatedCapacityLostTotal",
              volumeFailureSummary.getEstimatedCapacityLostTotal());
    }
    info.put(node.getHostName() + ":" + node.getXferPort(), innerinfo.build());
  }
  return JSON.toString(info);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:45,代码来源:FSNamesystem.java

示例5: getLiveNodes

import org.apache.hadoop.hdfs.server.blockmanagement.DatanodeDescriptor; //导入方法依赖的package包/类
/**
 * Returned information is a JSON representation of map with host name as the
 * key and value is a map of live node attribute keys to its values
 */
@Override // NameNodeMXBean
public String getLiveNodes() {
  final Map<String, Map<String,Object>> info = 
    new HashMap<String, Map<String,Object>>();
  final List<DatanodeDescriptor> live = new ArrayList<DatanodeDescriptor>();
  blockManager.getDatanodeManager().fetchDatanodes(live, null, false);
  for (DatanodeDescriptor node : live) {
    ImmutableMap.Builder<String, Object> innerinfo =
        ImmutableMap.<String,Object>builder();
    innerinfo
        .put("infoAddr", node.getInfoAddr())
        .put("infoSecureAddr", node.getInfoSecureAddr())
        .put("xferaddr", node.getXferAddr())
        .put("lastContact", getLastContact(node))
        .put("usedSpace", getDfsUsed(node))
        .put("adminState", node.getAdminState().toString())
        .put("nonDfsUsedSpace", node.getNonDfsUsed())
        .put("capacity", node.getCapacity())
        .put("numBlocks", node.numBlocks())
        .put("version", node.getSoftwareVersion())
        .put("used", node.getDfsUsed())
        .put("remaining", node.getRemaining())
        .put("blockScheduled", node.getBlocksScheduled())
        .put("blockPoolUsed", node.getBlockPoolUsed())
        .put("blockPoolUsedPercent", node.getBlockPoolUsedPercent())
        .put("volfails", node.getVolumeFailures());
    VolumeFailureSummary volumeFailureSummary = node.getVolumeFailureSummary();
    if (volumeFailureSummary != null) {
      innerinfo
          .put("failedStorageLocations",
              volumeFailureSummary.getFailedStorageLocations())
          .put("lastVolumeFailureDate",
              volumeFailureSummary.getLastVolumeFailureDate())
          .put("estimatedCapacityLostTotal",
              volumeFailureSummary.getEstimatedCapacityLostTotal());
    }
    if (node.getUpgradeDomain() != null) {
      innerinfo.put("upgradeDomain", node.getUpgradeDomain());
    }
    info.put(node.getHostName() + ":" + node.getXferPort(), innerinfo.build());
  }
  return JSON.toString(info);
}
 
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:48,代码来源:FSNamesystem.java


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