标签:相同 执行 编程 上传 输入 input 完成 user 终端
1.编程实现以下指定功能,并利用Hadoop提供的Shell命令完成相同任务:
cd /usr/local/hadoop
touch linux.txt
cat linux.txt
./sbin/start-dfs.sh ./bin/hdfs dfs -mkdir -p /user/hadoop ./bin/hdfs dfs -mkdir input ./bin/hdfs dfs -put ./linux.txt input
./bin/hdfs dfs -ls
./bin/hdfs dfs -ls input
./bin/hdfs dfs -cat input/linux.txt
./bin/hdfs dfs -rm -ls input/linux.txt
./bin/hdfs dfs -get input/test.txt ~/linux.txt
./bin/hdfs dfs -rm -ls input/hello.txt
向HDFS中上传任意文本文件,如果指定的文件在HDFS中已经存在,由用户指定是追加到原有文件末尾还是覆盖原有的文件;
if $(hdfs dfs -test -e hello.txt); then $(hdfs dfs -appendToFile local.txt hello.txt); else $(hdfs dfs -copyFromLocal -f local.txt hello.txt); fi
if $(hdfs dfs -test -e file: then $(hdfs dfs -copyToLocal hello.txt ./hello2.txt); else $(hdfs dfs -copyToLocal hello.txt ./hello.txt); fi
hdfs dfs -cat hello.txt
hdfs dfs -ls -h hello.txt
hdfs dfs -ls -R -h /user/hadoop
if $(hdfs dfs -hello -d dir1/dir2); then $(hdfs dfs -touchz dir1/dir2/filename); else $(hdfs dfs -mkdir -p dir1/dir2 && hdfs dfs -touchz dir1/dir2/filename); fi
if $(hdfs dfs -hello -d dir1/dir2); then $(hdfs dfs -touchz dir1/dir2/filename); else $(hdfs dfs -mkdir -p dir1/dir2); fi if$(hdfs dfs -rmdir dir1/dir2); then $(hdfs dfs -rmdir dir1/dir2) fi
追加到文件末尾: hdfs dfs -appendToFile local.txt text.txt 追加到文件开头: (由于没有直接的命令可以操作,方法之一是先移动到本地进行操作,再进行上传覆盖): hdfs dfs -get text.txt cat text.txt >> local.txt hdfs dfs -copyFromLocal -f text.txt text.txt
hdfs dfs -rm text.txt
删除目录(如果目录非空则会提示not empty,不执行删除): hdfs dfs -rmdir dir1/dir2 强制删除目录: hdfs dfs -rm -R dir1/dir2
hdfs dfs -mv text.txt text2.txt
标签:相同 执行 编程 上传 输入 input 完成 user 终端
原文地址:https://www.cnblogs.com/OZX143570/p/8947472.html