首页 > 解决方案 > How to move deleted HDFS file into the Previous location

问题描述

This is the path when I have deleted the fie from the existing folder Moved: 'hdfs://nameservice1/user/edureka_978336/Assignment24/abc.txt' to trash at: hdfs://nameservice1/ user/edureka_978336/.Trash/Current/user/edureka_978336/Assignment24/abc.txt

Where Im trying to restore it through MV function but it's not working

hdfs dfs -mv /user/edureka_978336/.Trash/Current/user/edureka_978336/Assignment24/abc.txt/user/edureka_978336/Asign ment24

标签: hdfs

解决方案


你能粘贴当你说它不起作用时出现的错误。

hdfs dfs -mv sourcePath targetPath

此命令应该适用于将文件从垃圾箱中移回。确保您有权从垃圾箱中提取数据。可以尝试使用 sudo 运行:

sudo -u <user.name> hdfs dfs -mv sourcePath targetPath

推荐阅读