HBase put流程主要细节

HBase 1.2中put流程关键细节:

HBase put流程主要细节_第1张图片

1、client会去zk的znode下寻找hbase:meta表位置,

2、找到hbase:meta表所在主机RS3,同时找到所要访问 region的主机

3、client 找到region的主机位置RS2 ,并将数据写到Region上


客户端写入和RegionServer响应的整个过程

HBase put流程主要细节_第2张图片

memstore落盘的流程


HBase put流程主要细节_第3张图片

HFile格式的组成

HBase put流程主要细节_第4张图片



参考文章:http://hbasefly.com/2016/12/21/hbase-getorscan/

                    http://www.ithao123.cn/content-2839043.html

                   http://www.aboutyun.com/thread-10849-1-1.html

你可能感兴趣的:(HBase)