本文介绍了在hdfs中重命名目录的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要在hdfs中重命名一个目录。这是什么命令?
I need to rename a directory in hdfs. What is the command for that ?
hadoop fs -mv <src> <dest>
上述命令将src文件夹移动到dest文件夹中。而不是,我希望将 src
文件夹重命名为 dest
。
The above command moves the src folder into dest folder. Instead of, I want the src
folder to be renamed as dest
.
推荐答案
重命名不在hadoop中,但可以移动,
hadoop fs -mv oldname newname
Rename is not in hadoop, but you can move,hadoop fs -mv oldname newname
这篇关于在hdfs中重命名目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!