刚刚试了HDFS“回收站”功能,也就是core-site.xml文件中的“fs.trash.interval”选项。
1. 在core-site.xml添加“fs.trash.interval”选项,这里配置60分钟(单位为分钟)
<property>
<name>fs.trash.interval</name>
<value>60</value>
<description>Number of minutes between trash checkpoints.If zero, the trash feature is disabled.</description>
</property>
2. 重启集群
3. 删除一个文件,如:“./hadoop dfs -rmr /test/output/1”
4. 删除的文件在 “./hadoop dfs -ls /user/${username}/.Trash/Current/test/output/1”目录下可以找到.