码迷,mamicode.com
首页 > 其他好文 > 详细

第三章 熟悉常用的HDFS操作

时间:2018-04-27 21:40:05      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:不为   文件名   显示   重命名   code   命令   存在   copy   amp   

一、Hadoop提供的Shell命令完成相同任务:

  1. 在本地Linux文件系统的“/home/hadoop/”目录下创建一个文件txt,里面可以随意输入一些单词.
    cd ./home/hadoop
    sudo mkdir hello.txt

     

  2. 在本地查看文件位置(ls)
    cd hadoop

     

  3. 在本地显示文件内容
    touch hello.txt 
    cat hello.txt

     

  4. 使用命令把本地文件系统中的“txt”上传到HDFS中的当前用户目录的input目录下。
    ./sbin/start-dfs.sh
        ./bin/hdfs dfs -mkdir -p /user/hadoop
        ./bin/hdfs dfs -mkdir input
        ./bin/hdfs dfs -put ./hello.txt input

     

  5. 查看hdfs中的文件(-ls)
    ./bin/hdfs dfs -ls /input

     

  6. 显示hdfs中该的文件内容
    ./bin/hdfs dfs -cat input/hello.txt

     

  7. 删除本地的txt文件并查看目录
    ./bin/hdfs dfs -rm -ls input/hello.txt

     

  8. 从hdfs中将txt下载地本地原来的位置。
    ./bin/hdfs dfs -get input/test.txt ~/hello.txt

     

  9. 从hdfs中删除txt并查看目录
    ./bin/hdfs dfs -rm -ls input/hello.txt

     

 二、

  1. 向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

     

  2. 从HDFS中下载指定文件,如果本地文件与要下载的文件名称相同,则自动对下载的文件重命名;
    if $(hdfs dfs -test -e file:
    then $(hdfs dfs -copyToLocal hello.txt ./hello2.txt);
    else $(hdfs dfs -copyToLocal hello.txt ./hello.txt);
    fi

     

  3. 将HDFS中指定文件的内容输出到终端中;
    hdfs dfs -cat hello.txt

     

  4. 显示HDFS中指定的文件的读写权限、大小、创建时间、路径等信息;
    hdfs dfs -ls -h hello.txt

     

  5. 给定HDFS中某一个目录,输出该目录下的所有文件的读写权限、大小、创建时间、路径等信息,如果该文件是目录,则递归输出该目录下所有文件相关信息;
    hdfs dfs -ls -R -h /user/hadoop

     

  6. 提供一个HDFS内的文件的路径,对该文件进行创建和删除操作。如果文件所在目录不存在,则自动创建目录;
    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

     

  7. 提供一个HDFS的目录的路径,对该目录进行创建和删除操作。创建目录时,如果目录文件所在目录不存在则自动创建相应目录;删除目录时,由用户指定当该目录不为空时是否还删除该目录;
    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

     

  8. 向HDFS中指定的文件追加内容,由用户指定内容追加到原有文件的开头或结尾;
    追加到文件末尾:hdfs dfs -appendToFile local.txt hello.txt
    追加到文件开头:
    (由于没有直接的命令可以操作,方法之一是先移动到本地进行操作,再进行上传覆盖):
    hdfs dfs -get hello.txt
    cat text.txt >> local.txt
    hdfs dfs -copyFromLocal -f hello.txt hello.txt

     

  9. 删除HDFS中指定的文件;
    hdfs dfs -rm hello.txt

     

  10. 删除HDFS中指定的目录,由用户指定目录中如果存在文件时是否删除目录;
    删除目录(如果目录非空则会提示not empty,不执行删除):hdfs dfs -rmdir dir1/dir2
    强制删除目录:hdfs dfs -rm -R dir1/dir2

     

  11. 在HDFS中,将文件从源路径移动到目的路径。
    hdfs dfs -mv hello.txt hello2.txt

     

第三章 熟悉常用的HDFS操作

标签:不为   文件名   显示   重命名   code   命令   存在   copy   amp   

原文地址:https://www.cnblogs.com/a305810827/p/8964565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!