開(kāi)啟回收站功能,可以將刪除的文件在不超時(shí)的情況下,恢復(fù)原數(shù)據(jù),起到防止誤刪除、備份等作用。
1.回收站參數(shù)設(shè)置及工作機(jī)制
2.啟用回收站
修改core-site.xml
,配置垃圾回收時(shí)間為1分鐘。
<property>
<name>fs.trash.interval</name>
<value>1</value>
</property>
3.查看回收站
回收站在集群中的路徑:/user/用戶名/.Trash/….
4.修改訪問(wèn)垃圾回收站用戶名稱
進(jìn)入垃圾回收站用戶名稱,默認(rèn)是dr.who,修改為用戶名
[core-site.xml]
<property>
<name>hadoop.http.staticuser.user</name>
<value>用戶名</value>
</property>
5.通過(guò)程序刪除的文件不會(huì)經(jīng)過(guò)回收站,需要調(diào)用moveToTrash()才進(jìn)入回收站
Trash trash = New Trash(conf);
trash.moveToTrash(path);
6.恢復(fù)回收站數(shù)據(jù)
hadoop fs -mv
/user/atguigu/.Trash/Current/user/atguigu/input /user/atguigu/input
7.清空回收站
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接