hdfs和spark笔记

hdfs的使用类似于Linux命令本身,只是在前面加入./hdfs dfs + 正常的Linux命令,即./hdfs dfs -ls /hw(hdfs中路径)

1.list all files

[rucer@yun0 bin]$ ./hdfs dfs -ls /

drwxr-xr-x - rucer users 0 2017-11-13 13:11 /default_tests_files

2.hdfs导入导出文件

导入命令:./hdfs dfs -copyFromLocal /source/file.txt /destination directory

到出命令(参数):copyToLocal

./hdfs dfs -copyToLocal /source/file.txt /destination directory

更多命令详解见 http://www.cnblogs.com/cl1234/p/3566923.html

你可能感兴趣的:(big-data,spark,hdfs)