Exception in thread "main" org.apache.hadoop.mapreduce.lib.input.InvalidInputException: Input path does not exist: file:/D:/input/hello.txt
时间: 2024-05-17 20:19:26 浏览: 257
Hadoop源代码分析(包mapreduce.lib.input)
这个错误是因为 Hadoop 找不到输入路径 `/D:/input/hello.txt`。你需要确认输入路径是否正确,以及文件是否存在。如果输入路径正确,但文件不存在,那么你需要创建这个文件,或者修改输入路径,使其指向已经存在的文件。如果你使用的是 HDFS,那么输入路径应该以 `hdfs://` 开头,例如 `hdfs://localhost:9000/input/hello.txt`。
阅读全文