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


Java DistributedFileSystem.getDataNodeStats方法代码示例

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


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

示例1: getDateNodeHost

import org.apache.hadoop.hdfs.DistributedFileSystem; //导入方法依赖的package包/类
public static void getDateNodeHost() throws IOException{

        Configuration conf = getConf();

        FileSystem fs=FileSystem.get(conf);
        DistributedFileSystem hdfs = (DistributedFileSystem)fs;
        DatanodeInfo[] dataNodeStats = hdfs.getDataNodeStats();
        for(int i=0;i<dataNodeStats.length;i++){
            System.out.println("DataNode_"+i+"_Name:"+dataNodeStats[i].getHostName());
        }
    }
 
开发者ID:ShawnShoper,项目名称:x-job,代码行数:12,代码来源:HDFSUtils.java

示例2: printTopology

import org.apache.hadoop.hdfs.DistributedFileSystem; //导入方法依赖的package包/类
/**
 * Display each rack and the nodes assigned to that rack, as determined
 * by the NameNode, in a hierarchical manner.  The nodes and racks are
 * sorted alphabetically.
 * 
 * @throws IOException If an error while getting datanode report
 */
public int printTopology() throws IOException {
    DistributedFileSystem dfs = getDFS();
    final DatanodeInfo[] report = dfs.getDataNodeStats();

    // Build a map of rack -> nodes from the datanode report
    HashMap<String, TreeSet<String> > tree = new HashMap<String, TreeSet<String>>();
    for(DatanodeInfo dni : report) {
      String location = dni.getNetworkLocation();
      String name = dni.getName();
      
      if(!tree.containsKey(location)) {
        tree.put(location, new TreeSet<String>());
      }
      
      tree.get(location).add(name);
    }
    
    // Sort the racks (and nodes) alphabetically, display in order
    ArrayList<String> racks = new ArrayList<String>(tree.keySet());
    Collections.sort(racks);
    
    for(String r : racks) {
      System.out.println("Rack: " + r);
      TreeSet<String> nodes = tree.get(r);

      for(String n : nodes) {
        System.out.print("   " + n);
        String hostname = NetUtils.getHostNameOfIP(n);
        if(hostname != null)
          System.out.print(" (" + hostname + ")");
        System.out.println();
      }

      System.out.println();
    }
  return 0;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:45,代码来源:DFSAdmin.java

示例3: getNodeInfo

import org.apache.hadoop.hdfs.DistributedFileSystem; //导入方法依赖的package包/类
public DatanodeInfo[] getNodeInfo() throws IOException {
    DistributedFileSystem hdfs = (DistributedFileSystem) fs;
    return hdfs.getDataNodeStats();
}
 
开发者ID:hays2hong,项目名称:stonk,代码行数:5,代码来源:HDFSClient.java


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