Skip to content

Latest commit

 

History

History
31 lines (13 loc) · 867 Bytes

File metadata and controls

31 lines (13 loc) · 867 Bytes

146、HBase的物理存储格式:为啥说他是列式存储?

《008_HBase的物理存储格式:为啥说他是列式存储?》

rowkey order:base order:detail order:extent

order_1_110 xxx(t3) xxx(t4)

order_1_111 x1(t1); x2(t2) xxx(t5) xxx(t6)

hbase,列式存储的一个系统,他不是说按一行一行的格式来进行存储的,按列来进行存储的

rowkey timestamp 列 值

order_1_110 t3 order:base xxx

order_1_110 t4 order:detail xxx

order_1_111 t1 order:base x1

order_1_111 t2 order:base x2

order_1_111 t5 order:detail xxx

order_1_111 t6 order:extent xxx