org.apache.hadoop.mapreduce.lib.input.InvalidInputException: Input path does not exist: file:/input
2021-07-03 00:04
标签:exist add pre val set hdf 文件目录 解决 test 原我是这样写的 //输入数据所在的文件目录 这个错误原因是路劲错误,应加上hdfs中core-site.xml中配置路径,我的hdfs配置路径为hdfs://test1:9000 改为 //输入数据所在的文件目录 问题解决,记住数据路径不需要创建,只创建输入文件路径即可 org.apache.hadoop.mapreduce.lib.input.InvalidInputException: Input path does not exist: file:/input 标签:exist add pre val set hdf 文件目录 解决 test 原文地址:http://www.cnblogs.com/iberichman/p/7127191.html
FileInputFormat.addInputPath(job, new Path("/input/"));
//mapreduce执行后输出数据目录
FileOutputFormat.setOutputPath(job, new Path("/output/"));
FileInputFormat.addInputPath(job, new Path("hdfs://test1:9000/input/"));
//mapreduce执行后输出数据目录
FileOutputFormat.setOutputPath(job, new Path("hdfs://test1:9000/output/"));
上一篇:企业为什么需要定制自己的App?
文章标题:org.apache.hadoop.mapreduce.lib.input.InvalidInputException: Input path does not exist: file:/input
文章链接:http://soscw.com/index.php/essay/101013.html