合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
Welcome to the Hadoop installed wiki! 以下是相关资料 [搭建hadoop-2.6.0-cdh5.4.7伪分布式](https://blog.liyang.io/108.html) [apache hadoop-2.6.0-CDH5.4.1 安装:完全分布式](http://blog.csdn.net/yew1eb/article/details/45790483) [官网:Hadoop分布式文件系统:架构和设计](http://hadoop.apache.org/docs/r1.0.4/cn/hdfs_design.html) [Yarn 和MapReduce比较](http://www.aboutyun.com/thread-7678-1-1.html) [HBase 默认配置](http://blog.csdn.net/qq_20641565/article/details/54408279) [基于CDH5.4.5(ha)的Hbase 3节点搭建](http://blog.csdn.net/qq_20641565/article/details/54410271) [分布式系统概述(Hadoop与HBase的前生今世)](http://blog.csdn.net/pirateleo/article/details/8426736) [HBase介绍、搭建、环境、安装部署:架构、数据结构、原理](http://www.cnblogs.com/oraclestudy/articles/5665780.html) [zk的作用及spark](http://blog.csdn.net/dream_an/article/details/52089883) [HBase之单机模式与伪分布式模式安装](http://blog.csdn.net/andie_guo/article/details/44086389) HBase命令及数据结构//TODO ## HBase - HMaster的作用: 为Region server分配region 负责Region server的负载均衡 发现失效的Region server并重新分配其上的region HDFS上的垃圾文件回收 处理schema更新请求 - HRegionServer作用: 维护master分配给他的region,处理对这些region的io请求 负责切分正在运行过程中变的过大的region 可以看到,client访问HBase上的数据并不需要master参与(寻址访问zookeeper和region server,数据读写访问region server),master仅仅维护table和region的元数据信息(table的元数据信息保存在zookeeper上),负载很低。 HRegionServer存取一个子表时,会创建一个HRegion对象,然后对表的每个列族创建一个Store实例,每个Store都会有一个MemStore和0个或多个StoreFile与之对应,每个StoreFile都会对应一个HFile, HFile就是实际的存储文件。因此,一个HRegion有多少个列族就有多少个Store。 一个HRegionServer会有多个HRegion和一个HLog。