熟悉常用的HDFS操作
Posted 陈子翔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了熟悉常用的HDFS操作相关的知识,希望对你有一定的参考价值。
一、Hadoop提供的Shell命令完成相同任务:
- 在本地Linux文件系统的“/home/hadoop/”目录下创建一个文件txt,里面可以随意输入一些单词.
mkdir hadoop cd hadoop touch test.txt gedit test.txt
- 在本地查看文件位置(ls)
ls -al
- 在本地显示文件内容
cat test.txt
- 使用命令把本地文件系统中的“txt”上传到HDFS中的当前用户目录的input目录下。
cd /usr/local/hadoop ./sbin/start-dfs.sh ./bin/hdfs dfs -mkdir input ./bin/hdfs dfs -put ~/hadoop/test.txt input
- 查看hdfs中的文件(-ls)
./bin/hdfs dfs -ls
- 显示hdfs中该的文件内容
./bin/hdfs dfs -cat input/test.txt
- 删除本地的txt文件并查看目录
rm -r ~/hadoop/test.txt
- 从hdfs中将txt下载地本地原来的位置。
cd /usr/local/hadoop ./sbin/start-dfs.sh ./bin/hdfs dfs -get input/test.txt ~/hadoop
- 从hdfs中删除txt并查看目录
./bin/hdfs dfs -rm -r input/test.txt ./bin/hdfs dfs -ls -R
以上是关于熟悉常用的HDFS操作的主要内容,如果未能解决你的问题,请参考以下文章