hadoop fs、hadoop dfs與hdfs dfs的區別


hadoop fs:    使用面最廣,可以操作任何文件系統。

hadoop dfs與hdfs dfs :   只能操作HDFS文件系統相關(包括與Local FS間的操作),前者已經Deprecated,一般使用后者。

 

 

 

以下內容參考自stackoverflow:

  Following are the three commands which appears same but have minute differences

  1. hadoop fs {args}
  2. hadoop dfs {args}
  3. hdfs dfs {args}

hadoop fs <args>

  FS relates to a generic file system which can point to any file systems like local, HDFS etc. So this can be used when you are dealing with different file systems such as Local FS, HFTP FS, S3 FS, and others 。

  hadoop dfs <args>

  dfs is very specific to HDFS. would work for operation relates to HDFS. This has been deprecated and we should use hdfs dfs instead.

  hdfs   dfs <args>

  same as 2nd i.e would work for all the operations related to HDFS and is the recommended command instead of hadoop dfs

below is the list categorized as HDFS commands.

  **#hdfs commands**
  namenode|secondarynamenode|datanode|dfs|dfsadmin|fsck|balancer|fetchdt|oiv|dfsgroups

  So even if you use Hadoop dfs , it will look locate hdfs and delegate that command to hdfs dfs

 

 

本文轉自大數據躺過的坑博客園博客,原文鏈接:http://www.cnblogs.com/zlslch/p/7650006.html,如需轉載請自行聯系原作者


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM