1.hbase安装
2.hbase hdfs的路径
3.启动hbase shell
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呈现形式
6.hbase 兼容性 摘抄自官网
7.hbase 表压缩
生产推荐snappy 压缩方式 hdfs hive 采用lzo的压缩方式
enable表后,HBase表的压缩格式并没有生效,还需要一个动作,即HBase major_compact
8.hbase table version
9.hbase web