• 第三章 熟悉常用的HDFS操作


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

    在本地Linux文件系统的“/home/hadoop/”目录下创建一个文件txt,里面可以随意输入一些单词.
    在本地查看文件位置(ls)
    在本地显示文件内容

    cd /usr/local/hadoop
        touch ly.txt 
        cat ly.txt

    使用命令把本地文件系统中的“txt”上传到HDFS中的当前用户目录的input目录下。

    ./sbin/start-dfs.sh
        ./bin/hdfs dfs -mkdir -p /user/hadoop
        ./bin/hdfs dfs -mkdir input
        ./bin/hdfs dfs -put ./ly.txt input

    查看hdfs中的文件(-ls)

    ./bin/hdfs dfs -ls input

    显示hdfs中该的文件内容

    ./bin/hdfs dfs -cat input/ly.txt

    删除本地的txt文件并查看目录

    ./bin/hdfs dfs -rm -ls input/ly.txt

    从hdfs中将txt下载地本地原来的位置。

    ./bin/hdfs dfs -get input/test.txt ~/ly.txt

    从hdfs中删除txt并查看目录

    ./bin/hdfs dfs -rm -ls input/ly.txt

    二、

    向HDFS中上传任意文本文件,如果指定的文件在HDFS中已经存在,由用户指定是追加到原有文件末尾还是覆盖原有的文件;

    if $(hdfs dfs -test -e ly.txt);
    then $(hdfs dfs -appendToFile local.txt ly.txt);
    else $(hdfs dfs -copyFromLocal -f local.txt ly.txt);
    fi

    从HDFS中下载指定文件,如果本地文件与要下载的文件名称相同,则自动对下载的文件重命名;

    if $(hdfs dfs -test -e file:
    then $(hdfs dfs -copyToLocal ly.txt ./ly2.txt);
    else $(hdfs dfs -copyToLocal ly.txt ./ly.txt);
    f

    将HDFS中指定文件的内容输出到终端中;

    hdfs dfs -cat ly.txt

    显示HDFS中指定的文件的读写权限、大小、创建时间、路径等信息;

    hdfs dfs -ls -h ly.txt

    提供一个HDFS内的文件的路径,对该文件进行创建和删除操作。如果文件所在目录不存在,则自动创建目录;

    if $(hdfs dfs -test -d dir1/dir2);
    then $(hdfs dfs -touchz dir1/dir2/filename);
    else $(hdfs dfs -mkdir -p dir1/dir2 && hdfs dfs -touchz dir1/dir2/filename);
    fi
    删除文件:hdfs dfs -rm dir1/dir2/filename

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

    hdfs dfs -mkdir -p dir1/dir2
    hdfs dfs -rmdir dir1/dir2
    hdfs dfs -rm -R dir1/dir2

    向HDFS中指定的文件追加内容,由用户指定内容追加到原有文件的开头或结尾;

    hdfs dfs -appendToFile local.txt ly.txt

    删除HDFS中指定的文件;

    hdfs dfs -rm ly.txt

    删除HDFS中指定的目录,由用户指定目录中如果存在文件时是否删除目录;

    hdfs dfs -rmdir dir1/dir2
    hdfs dfs -rm -R dir1/dir2

    在HDFS中,将文件从源路径移动到目的路径。

    hdfs dfs -mv ly.txt ly2.txt
  • 相关阅读:
    高精度计算
    高精度除以低精度
    P1258 小车问题
    POJ 2352 stars (树状数组入门经典!!!)
    HDU 3635 Dragon Balls(超级经典的带权并查集!!!新手入门)
    HDU 3938 Portal (离线并查集,此题思路很强!!!,得到所谓的距离很巧妙)
    POJ 1703 Find them, Catch them(确定元素归属集合的并查集)
    HDU Virtual Friends(超级经典的带权并查集)
    HDU 3047 Zjnu Stadium(带权并查集,难想到)
    HDU 3038 How Many Answers Are Wrong(带权并查集,真的很难想到是个并查集!!!)
  • 原文地址:https://www.cnblogs.com/TopHin/p/8964091.html
Copyright © 2020-2023  润新知