在Linux中,Hadoop分布式文件系統(HDFS)的文件移動操作可以通過hadoop fs
命令來實現
hadoop fs -put local_file_path hdfs_destination_path
例如:
hadoop fs -put /home/user/file.txt /user/hadoop/data/
hadoop fs -mv hdfs_source_path hdfs_destination_path
例如:
hadoop fs -mv /user/hadoop/data/file.txt /user/hadoop/backup/
hadoop fs -get hdfs_source_path local_destination_path
例如:
hadoop fs -get /user/hadoop/data/file.txt /home/user/downloads/
hadoop fs -cp hdfs_source_path hdfs_destination_path
例如:
hadoop fs -cp /user/hadoop/data/file.txt /user/hadoop/backup/
請注意,這些命令需要在安裝了Hadoop客戶端的計算機上運行,并且需要確保Hadoop集群正在運行。