当前位置: 首页 > 工具软件 > :path > 使用案例 >

hadoop 报错Error: java.io.FileNotFoundException: Path is not a file:/xx1/xx2的解决办法

慕河
2023-12-01

主要原因就是hadoop1.x的FileInputFormat.setInputPaths(job, new Path(input));

在hadoop2.x的环境运行导致的,将上述代码用下面两行代码替换即可:

 FileInputFormat.setInputDirRecursive(job, true);
 FileInputFormat.addInputPath(job, new Path(input));
 类似资料: