hdfs的相关api

2020-12-18 18:32

阅读:616

标签:files   图片   dfs   mic   end   except   目录   roo   source   

连接hdfs

根据hdfs的版本引用相关的hdfs依赖

        
        org.apache.hadoop
            hadoop-client
            2.6.5org.apache.hadoop
            hadoop-common
            2.6.5org.apache.hadoop
            hadoop-hdfs
            2.6.5

将hdfs中的core-site.xmlhdfs-site.xml放进项目的resources目录里

技术图片

简单编码测试下

public class Connection {
    public static void main(String[] args) throws IOException, URISyntaxException, InterruptedException {
        Configuration configuration=new Configuration();
        System.setProperty("HADOOP_USER_NAME", "root");
        FileSystem fs = FileSystem.get(configuration);
        System.out.println(fs.getHomeDirectory());
        //拿到FileSystem后可以简单操作下hdfs,若是运行成功则代表连接成功!
    }


}

hdfs的相关api

标签:files   图片   dfs   mic   end   except   目录   roo   source   

原文地址:https://www.cnblogs.com/shouyaya/p/14130657.html


评论


亲,登录后才可以留言!