hadoop HDFS中是否有ln -s
?
例如:
我在HDFS中有10个文件
/user/hadoop/input
,即1.txt, 2.txt ... 10.txt
HDFS中的另一个目录是/user/hadoop/test
我只想将/user/hadoop/input/1.txt
的1个文件复制到/user/hadoop/test/1.txt
。
最简单的方法是使用hadoop dfs -cp /user/hadoop/1.txt /user/hadoop/test
。
但它耗费更多时间和磁盘空间。有没有像hadoop dfs -ln /user/hadoop/1.txt /user/hadoop/test/1.txt
这样的shell?