美文网首页
分布式文件系统的学习

分布式文件系统的学习

作者: 无羡爱诗诗 | 来源:发表于2018-12-07 14:42 被阅读11次

    初步了解和学习HDFS(分布式文件系统)

    学习博客:https://www.cnblogs.com/codeOfLife/p/5375120.html

    HDFS has a master/slave architecture. An HDFS cluster consists of a single NameNode, a master server that manages the file system namespace and regulates access to files by clients. In addition, there are a number of DataNodes, usually one per node in the cluster, which manage storage attached to the nodes that they run on. HDFS exposes a file system namespace and allows user data to be stored in files. Internally, a file is split into one or more blocks and these blocks are stored in a set of DataNodes. The NameNode executes file system namespace operations like opening, closing, and renaming files and directories. It also determines the mapping of blocks to DataNodes. The DataNodes are responsible for serving read and write requests from the file system’s clients. The DataNodes also perform block creation, deletion, and replication upon instruction from the NameNode.

    HDFS架构图

    官网:http://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-hdfs/HdfsDesign.html

    相关文章

      网友评论

          本文标题:分布式文件系统的学习

          本文链接:https://www.haomeiwen.com/subject/bouthqtx.html