首页 > 其他 > 详细

HBase中Region, store, storefile和列簇的关系

时间:2016-03-13 12:44:32      阅读:196      评论:0      收藏:0      [点我收藏+]
      转自:http://zhb-mccoy.iteye.com/blog/1543492

技术分享

 

The HRegionServer opens the region and creates a corresponding HRegion object. When

the HRegion is opened it sets up a Store instance for each HColumnFamily for every table

as defined by the user beforehand. Each Store instance can, in turn, have one or more

StoreFile instances, which are lightweight wrappers around the actual storage file

called HFile. A Store also has a MemStore, and the HRegionServer a shared HLog in-stance。

原博客没有翻译,我这里大体翻译一下:RegionServer打开一个region的时候,会创建一个相应的HRegion对象。当这个HRegion被打开,他会为每一个表中的

每一个列簇创建一个Stroe实例,就想用户之前创建的那样。每一个Store实例相应地有一个或者多个StoreFile实例,StoreFile是对真正存储数据的文件(HFile)的

轻量级封装。一个Store还会有一个Memstore。每一个HRegionServer中的所有东西会共享一个HLog实例。

结合前面的图看就很清晰了。

 

 

 

hbase table中每个列簇都对应着region中的一个store,在hdfs系统中则对应着一个目录,如果列簇中尚无数据,怎该目录为空,也就是该store下还没有storefile。

 

1.house_hire_analysis 表中列簇total下无数据,另一张表fangyuan下有数据:
技术分享

 

2.查看hdfs region下的内容

技术分享

 

3. hbase console 如图:


技术分享

 

4.put一条记录到house_hire_analysis中,并flush,flush将改动从memstore刷新到磁盘


技术分享

 


技术分享

5. hbase cosole storefile已经增加


技术分享

6.新flush的kv根据策略会分别存到不同的storefiles中(最后compaction 会将这些小文件合并)


技术分享


技术分享

HBase中Region, store, storefile和列簇的关系

原文:http://www.cnblogs.com/mrxiaohe/p/5271578.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!