Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在执行作业后执行 hadoop delete 命令来删除处理过的输入文件。
hadoop fs -rm URI [URI …] 删除指定为 args 的文件。仅删除非空目录和文件。有关递归删除,请参阅 rmr。例子: `hadoop fs -rm hdfs://nn.example.com/file /user/hadoop/emptydir` 退出代码: 成功返回 0,错误返回 -1。
hadoop fs -rm URI [URI …]
删除指定为 args 的文件。仅删除非空目录和文件。有关递归删除,请参阅 rmr。例子:
`hadoop fs -rm hdfs://nn.example.com/file /user/hadoop/emptydir`
退出代码:
成功返回 0,错误返回 -1。
更多信息请参考:Hadoop 命令