1.hbase安装

hbase_hbase

2.hbase  hdfs的路径
hbase_hbase_02hbase_hbase_03

3.启动hbase shell

hbase_hbase_04

4.hbase基础操作

 create 'test', 'cf'
 list 'test'
 describe 'test'
 
 hbase(main):003:0> put 'test', 'row1', 'cf:a', 'value1' 
 0 row(s) in 0.0850 seconds 
 hbase(main):004:0> put 'test', 'row2', 'cf:b', 'value2'
 0 row(s) in 0.0110 seconds 
  hbase(main):005:0> put 'test', 'row3', 'cf:c', 'value3' 
 0 row(s) in 0.0100 seconds
 
 hbase(main):006:0> scan 'test'
 
 get 'test', 'row1'   
             
 disable 'test'
 enable 'test'       
 drop  'test'



5.hbase 在hdfs呈现形式

hbase_hbase_05

hbase_hbase_06

6.hbase 兼容性 摘抄自官网

hbase_hbase_07


7.hbase 表压缩

生产推荐snappy 压缩方式 hdfs   hive 采用lzo的压缩方式

hbase_hbase_08

hbase_hbase_09

enable表后,HBase表的压缩格式并没有生效,还需要一个动作,即HBase major_compact

hbase_hbase_10

8.hbase table  version

hbase_hbase_11


hbase_hbase_12


hbase_hbase_13


9.hbase web

hbase_hbase_14

hbase_hbase_15