熟悉經常使用的HDFS操做

  1. 在本地Linux文件系統的「/home/hadoop/」目錄下建立一個文件txt,裏面能夠隨意輸入一些單詞
     cd /usr/local/hadoop
        touch abc.txt
       
        cat abc.txt
  2. 在本地查看文件位置(ls)
    ./bin/hdfs dfs -ls /input
  3. 在本地顯示文件內容
    ./bin/hdfs dfs -cat input/abc.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 ./abc.txt input
  5. 刪除本地的txt文件並查看目錄
    ./bin/hdfs dfs -rm -ls input/abc.txt
  6. 從hdfs中將txt下載地本地原來的位置。
    ./bin/hdfs dfs -get input/test.txt ~/abc.txt
  7. 從hdfs中刪除txt並查看目錄
     ./bin/hdfs dfs -rm -ls input/abc.txt
  8. 向HDFS中上傳任意文本文件,若是指定的文件在HDFS中已經存在,由用戶指定是追加到原有文件末尾仍是覆蓋原有的文件;
    if $(hdfs dfs -test -e text.txt);
    then $(hdfs dfs -appendToFile local.txt text.txt);
    else $(hdfs dfs -copyFromLocal -f local.txt text.txt);
    fi
  9. 從HDFS中下載指定文件,若是本地文件與要下載的文件名稱相同,則自動對下載的文件重命名;
    if $(hdfs dfs -test -e file:///home/hadoop/text.txt);
    then $(hdfs dfs -copyToLocal text.txt ./text2.txt); 
    else $(hdfs dfs -copyToLocal text.txt ./text.txt); 
    fi
  10. 將HDFS中指定文件的內容輸出到終端中;
    hdfs dfs -cat text.txt
  11. 顯示HDFS中指定的文件的讀寫權限、大小、建立時間、路徑等信息;
    hdfs dfs -ls -h text.txt
  12. 給定HDFS中某一個目錄,輸出該目錄下的全部文件的讀寫權限、大小、建立時間、路徑等信息,若是該文件是目錄,則遞歸輸出該目錄下全部文件相關信息;
    hdfs dfs -ls -R -h /user/hadoop
  13. 提供一個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
  14. 提供一個HDFS的目錄的路徑,對該目錄進行建立和刪除操做。建立目錄時,若是目錄文件所在目錄不存在則自動建立相應目錄;刪除目錄時,由用戶指定當該目錄不爲空時是否還刪除該目錄;
    建立目錄:hdfs dfs -mkdir -p dir1/dir2
    刪除目錄(若是目錄非空則會提示not empty,不執行刪除):hdfs dfs -rmdir dir1/dir2
    強制刪除目錄:hdfs dfs -rm -R dir1/dir2
  15. 向HDFS中指定的文件追加內容,由用戶指定內容追加到原有文件的開頭或結尾;
    追加到文件末尾: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
  16. 刪除HDFS中指定的文件;
    hdfs dfs -rm text.txt
  17. 刪除HDFS中指定的目錄,由用戶指定目錄中若是存在文件時是否刪除目錄;
    刪除目錄(若是目錄非空則會提示not empty,不執行刪除):hdfs dfs -rmdir dir1/dir2
    強制刪除目錄:hdfs dfs -rm -R dir1/dir2
  18. 在HDFS中,將文件從源路徑移動到目的路徑。
    hdfs dfs -mv text.txt text2.txt
相關文章
相關標籤/搜索