如何连接到远程HDFS

时间:2015-11-09 14:05:52

标签: java hadoop hdfs remote-access

我正在尝试连接到远程计算机上运行的HDFS实例。

我在Windows机器上运行eclipse,而HDFS在Unix机器上运行。这是我试过的

         Configuration conf = new Configuration();
         conf.set("fs.defaultFS", "hdfs://remoteHostName:portNumber");
         DFSClient client = null;
         System.out.println("try");
         try 
         {
             System.out.println("trying");   
             client = new DFSClient(conf);

        System.out.println(client);
         } 
         catch (IOException e) {

             e.printStackTrace();
        }

         finally {
             if(client!=null)
                 try {
                    client.close();
                } catch (IOException e) {

                    e.printStackTrace();
                }


         }

但这给了我以下异常

Exception in thread "main" java.lang.NoSuchMethodError: org.apache.hadoop.ipc.RPC.getProxy(Ljava/lang/Class;JLjava/net/InetSocketAddress;Lorg/apache/hadoop/security/UserGroupInformation;Lorg/apache/hadoop/conf/Configuration;Ljavax/net/SocketFactory;ILorg/apache/hadoop/io/retry/RetryPolicy;Z)Lorg/apache/hadoop/ipc/VersionedProtocol;
    at org.apache.hadoop.hdfs.DFSClient.createRPCNamenode(DFSClient.java:135)
    at org.apache.hadoop.hdfs.DFSClient.<init>(DFSClient.java:280)
    at org.apache.hadoop.hdfs.DFSClient.<init>(DFSClient.java:245)
    at org.apache.hadoop.hdfs.DFSClient.<init>(DFSClient.java:235)
    at org.apache.hadoop.hdfs.DFSClient.<init>(DFSClient.java:226)

顺便说一下,我从远程机器上的hdfs-site.xml获取了portNumber

这种做法是否正确?

另外,在Python中这样做会更容易吗?

修改

请注意,我确实在我的Windows上解压缩了Hadoop二进制文件,并相应地设置了HADOOP_HOME环境变量。这会导致问题吗?

1 个答案:

答案 0 :(得分:0)

请参阅:Hadoop 2.6.0 Browsing filesystem Java了解您的具体问题。

除此之外,您可能还需要考虑使用REST进行远程交互。 Apache Knox可以为您提供对远程集群的访问,并保护您的代码不必了解集群内部,例如host:port,kerberos等等。这些东西可以从远程客户端下更改。