No FileSystem for scheme: hdfs解决方案

  在本地环境下能够找到scheme,但是通过maven打包fatjar 后放到其他机器上就出现找不到scheme。

  看了代码,发现通过FileSystem.get(conf)初始化的时候,要通过静态加载来实现,也就是用Filesystem,get方法获得conf,

在configuration里需要设置配置文件core-site.xml里配置的fs.defaultFS指定对于的value路径。以及Junit 权限设置:

@Before
    public void init() throws Exception {
        Configuration conf = new Configuration();
        conf.set("fs.defaultFS", "hdfs://weekend200:9000");
    
        fs = FileSystem.get(new URI("hdfs://weekend200:9000"), conf, "hadoop");
    }。

 

你可能感兴趣的:(No FileSystem for scheme: hdfs解决方案)