我遇到了错误; java.lang.IllegalArgumentException:错误的FS:hdfs://0.0.0.0:9000 / user / hadoop / dataset / data.log,expected:file:///
Configuration conf = new Configuration();
conf.addResource(new Path("/home/hadoo/hadoop-2.5.2/etc/hadoop/core-site.xml"));
conf.addResource(new Path("/home/hadoo/hadoop-2.5.2/etc/hadoop/hdfs-site.xml"));
FileSystem fs = FileSystem.get(conf);
Path path = new Path("hdfs://0.0.0.0:9000/user/hadoop/dataset/data.log");
try {
if (fs.exist(path)) {
return true;
} else {
return false;
} catch (IOException e) {
e.printStackTrace();
}
但是,如果我从路径中删除前缀“hdfs://0.0.0.0:9000”,那就没问题。 您能否指导我如何在不更改hdfs路径的情况下解决此问题? 仅供参考,Hadoop服务器和客户端在不同的机器上运行。 ie)Hadoop(HDFS):172.xx.xx.247 我的测试客户端:172.xx.xx.236
<configuration>
<property>
<name>fs.default.name</name>
<value>hdfs://172.xx.xx.247:9000</value>
</property>
</configuration>
<configuration>
<property>
<name>dfs.replication</name>
<value>1</value>
</property>
<property>
<name>dfs.name.dir</name>
<value>file:///home/hadoop/hadoopdata/hdfs/namenode</value>
</property>
<property>
<name>dfs.data.dir</name>
<value>file:///home/hadoop/hadoopdata/hdfs/datanode</value>
</property>
</configuration>
<property>
<name>fs.file.impl</name>
<value>org.apache.hadoop.fs.LocalFileSystem</value>
</property>
<property>
<name>fs.hdfs.impl</name>
<value>org.apache.hadoop.hdfs.DistributedFileSystem</value>
</property>
答案 0 :(得分:2)
您的代码中存在拼写错误。
您的代码:
conf.addResource(new Path("/home/hadoo/hadoop-2.5.2/etc/hadoop/core-site.xml"));
尝试:
conf.addResource(new Path("/home/hadoop/hadoop-2.5.2/etc/hadoop/core-site.xml"));