HDFS架构概述

Posted arthurlance

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDFS架构概述相关的知识,希望对你有一定的参考价值。

1 Master(NameNode/NN) 带 N个Slaves(DataNode/DN)

HDFS/YARN/HBase

1个文件会被拆分成多个Block
blocksize:128M
130M ==> 2个Block: 128M 和 2M

NN:
1)负责客户端请求的响应
2)负责元数据(文件的名称、副本系数、Block存放的DN)的管理

DN:
1)存储用户的文件对应的数据块(Block)
2)要定期向NN发送心跳信息,汇报本身及其所有的block信息,健康状况

A typical deployment has a dedicated machine that runs only the NameNode software.
Each of the other machines in the cluster runs one instance of the DataNode software.
The architecture does not preclude running multiple DataNodes on the same machine
but in a real deployment that is rarely the case.

NameNode + N个DataNode
建议:NN和DN是部署在不同的节点上


replication factor:副本系数、副本因子

All blocks in a file except the last block are the same size

以上是关于HDFS架构概述的主要内容,如果未能解决你的问题,请参考以下文章

HDFS(Hadoop Distributed File System)的组件架构概述

HDFS概述————Block块大小设置

HDFS概述————HDFS HA

大数据-Hadoop生态-HDFS概述

Hadoop--02---HDFSYARNMapReduce 概述

2.5 HDFS体系架构