博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
回收站参数介绍
阅读量:6424 次
发布时间:2019-06-23

本文共 1579 字,大约阅读时间需要 5 分钟。

转自 

 

在core-default.xml中

<property>
  <name>fs.trash.interval</name>
  <value>0</value>
  <description>Number of minutes between trash checkpoints.
  If zero, the trash feature is disabled.
  </description>
</property>
也就是如果在core-site.xml中设置了 fs.trash.interval ,则会启用trash功能
<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>

譬如如上所示,设置间隔时间为1小时.
为了测试我们设置该参数为3分钟
建立文件:
[hadoop@HMaster conf]$ hadoop fs -touchz test/1.txt

[hadoop@HMaster conf]$ hadoop fs -touchz test/2.txt

[hadoop@HMaster conf]$ hadoop fs -ls test/*

-rw-r--r--   1 hadoop supergroup          0 2012-09-08 23:33 /user/hadoop/test/1.txt

-rw-r--r--   1 hadoop supergroup          0 2012-09-08 23:33 /user/hadoop/test/2.txt

删除文件:

[hadoop@HMaster conf]$ hadoop fs -rmr test/1.txt

Moved to trash: hdfs://localhost:9000/user/hadoop/test/1.txt

[hadoop@HMaster conf]$ hadoop fs -ls test

/*Found 1 items-rw-r--r--   1 hadoop supergroup          0 2012-09-08 23:33 /user/hadoop/test/2.txt

一旦删除,将会建立.Trash目录(如果以前不存在的话)
然后查询
[hadoop@HMaster conf]$ hadoop fs -ls .Trash/Current/user

/*Found 1 itemsdrwx------   - hadoop supergroup          0 2012-09-08 23:33 /user/hadoop/.Trash/Current/user/hadoop/test

1分钟后
[hadoop@HMaster conf]$ hadoop fs -ls .Trash/1209082336/user/hadoop/test

Found 1 items-rw-r--r--   1 hadoop supergroup          0 2012-09-08 23:33 /user/hadoop/.Trash/1209082336/user/hadoop/test/1.txt

3分钟之后: 
[hadoop@HMaster conf]$ hadoop fs -ls .Trash/
文件已经被删除
在此期间可以使用hadoop fs -cp/mv等命令把文件或文件夹恢复回去

转载于:https://www.cnblogs.com/jie465831735/p/3220690.html

你可能感兴趣的文章
weibo开放平台
查看>>
pytorch的函数中的dilation参数的作用
查看>>
如何给操作文档添加目录
查看>>
添加删除mysql用户
查看>>
安装 GCC
查看>>
Python打包上传
查看>>
Android系统中默认值的意义列表
查看>>
android 5.1 WIFI图标上的感叹号及其解决办法
查看>>
地址 寻址 存储
查看>>
Receive Windows Messages In NonWindowed Control
查看>>
linux之SQL语句简明教程---SUBSTRING
查看>>
【JS】Beginner7:Functions
查看>>
hdu 3955 March
查看>>
数据库性能优化之冗余字段的作用
查看>>
C语言程序设计第五次作业
查看>>
基础搜索算法的常见题型
查看>>
Go语言的接口
查看>>
DBA_实践指南系列9_Oracle Erp R12应用补丁AutoPatch/AutoControl/AutoConfig(案例)
查看>>
Python语言学习 (六)1.2
查看>>
数据库设计三大范式
查看>>