使用Java API从HDFS(Hortonworks Sandbox)读取文件时出现异常

时间:2017-02-14 08:42:04

标签: hadoop hdfs sandbox java-api file-read

我在尝试使用Java API从HDFS(Hortonworks Sandbox)读取文件时遇到问题。以下是我的代码 -

    System.setProperty ("hadoop.home.dir", "/");
    URI uri = URI.create ("hdfs://localhost:8020/user/maria_dev/test.txt");

    Path path = new Path (uri);

    Configuration conf = new Configuration ();
    conf.set ("fs.defaultFS", "hdfs://localhost:8020");
    conf.set ("dfs.client.use.datanode.hostname","true");
    conf.set("dfs.datanode.use.datanode.hostname","true");
    conf.set("dfs.client.use.legacy.blockreader", "true");

    byte[] btbuffer = new byte[5];
    String s;
    try (FileSystem fs = FileSystem.get (uri, conf)) {
        try {
            FSDataInputStream fileIn = fs.open (path);
            //s = fileIn.readUTF ();
            fileIn.read (btbuffer, 0, 20); 
            s = new String (btbuffer, Charset.forName ("UTF-8"));

        } catch (Exception e) {
            e.printStackTrace ();
        }
    }
    catch (Exception err){
        err.printStackTrace ();
    }

以下是我获得的例外情况 -

10:39:51.803 [main] WARN org.apache.hadoop.hdfs.BlockReaderFactory - I/O error constructing remote block reader. java.net.ConnectException: Connection refused .   
10:39:51.803 [main] WARN org.apache.hadoop.hdfs.DFSClient - Failed to connect to sandbox.hortonworks.com/172.17.0.2:50010 for block, add to deadNodes and continue. java.net.ConnectException: Connection refused .   
10:39:51.804 [main] INFO org.apache.hadoop.hdfs.DFSClient - Could not obtain BP-1464254149-172.17.0.2-1477381671113:blk_1073742576_1752 from any node: java.io.IOException: No live nodes contain block BP-1464254149-172.17.0.2-1477381671113:blk_1073742576_1752 after checking nodes = [172.17.0.2:50010], ignoredNodes = null No live nodes contain current block Block locations: 172.17.0.2:50010 Dead nodes:  172.17.0.2:50010.

无法找到任何有效的解决方案。任何帮助表示赞赏。

编辑: 以下是我的主机系统的/ etc / hosts的条目(从我调用该作业的地方) -

127.0.0.1       localhost    
255.255.255.255 broadcasthost    
::1             localhost    
172.17.0.2 sandbox.hortonworks.com localhost    

1 个答案:

答案 0 :(得分:0)

这是你提到的URI URI uri = URI.create ("hdfs://localhost:8020/user/maria_dev/test.txt");

但它正试图达到sandbox.hortonworks.com

尝试更改URI

相关问题