HDFS 异常CreateSymbolicLink错误(183)无法创建已存在的文件

envsm3lx  于 2022-12-09  发布在  HDFS
关注(0)|答案(1)|浏览(234)

我在尝试从Hadoop附带的hadoop-mapreduce-examples-3.3.1.jar运行wordcount示例时遇到此错误。

Exception message: CreateSymbolicLink error (183): Cannot create a file when that file already exists.


Shell output:         1 file(s) moved.
"Setting up env variables"
"Setting up job resources"

[2021-09-27 16:43:36.455]Container exited with a non-zero exit code 1.
[2021-09-27 16:43:36.455]Container exited with a non-zero exit code 1.
For more detailed output, check the application tracking page: http://DESKTOP-0N6IMAQ:8088/cluster/app/application_1632774426206_0006 Then click on links to logs of each attempt.
. Failing the application.
2021-09-27 16:43:36,780 INFO mapreduce.Job: Counters: 0

这是我提交的行
hadoopjar文件系统的关键字

ua4mk5z4

ua4mk5z41#

您的输出文件已存在。请更改输出文件的名称。

hadoop jar hadoop-mapreduce-examples-3.3.1.jar wordcount /input.txt /output2.txt

相关问题