HBase中Region,Store,StoreFile,ColumnFamily的关系

来源:互联网 发布:阀门公称压力算法 编辑:程序博客网 时间:2024/06/05 20:01

 

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。