sqoop import --connect jdbc:mysql://localhost:3306/test1 --username root --password root --table article --hive-import --hive-table testERROR tool.ImportTool: Encountered IOException running import job: org.apache.hadoop.mapred.FileAlreadyExistsException: Output directory hdfs://hadoopMaster:9000/user/hadoop/article already exists at org.apache.hadoop.mapreduce.lib.output.FileOutputFormat.checkOutputSpecs(FileOutputFormat.java:164) at org.apache.hadoop.mapreduce.JobSubmitter.checkSpecs(JobSu
时间: 2023-10-09 11:12:03 浏览: 135
sqoop-1.4.6-cdh5.14.2.tar系列安装包
这个错误提示是因为导入数据时指定的输出目录已经存在了。你可以尝试指定一个新的输出目录,或者删除已经存在的输出目录(hdfs://hadoopMaster:9000/user/hadoop/article),再重新运行命令。如果你确定不需要已经存在的输出目录,可以使用以下命令删除它:
```
hadoop fs -rm -r hdfs://hadoopMaster:9000/user/hadoop/article
```
然后再重新运行sqoop import命令即可。
阅读全文