hbase shell 基本操作命令

Thinkgamer_gyt發表於2015-07-29

具體的hbase shell 命令如下表所示:

檢視hbase 的狀態  :              status

檢視hbase 的版本  :              version

建立scores表:                                     create ‘scores’,‘grad’,'course'

檢視當前hbase 中有哪些表:               list

檢視錶scores的構造:                          describe ‘scores’

使用put插入資料:                                put 'scores','xiapi','grad:','1'

                 (xiaoxue  類似)                     put 'scores','xiapi','course:chine','97'

                                                              put 'scores','xiapi','course:math','128'

                                                              put 'scores','xiapi','course:engish','85'

檢視錶‘scores’ 中的行‘xiapi’:              get scores','xiapi'

檢視錶中所有資料:                             scan 'scores'

檢視錶中列簇所有資料:                      scan 'scores',{COLUMNS=>'course'}

刪除表中xiapi行中course列簇的math:delete 'scores','xiapi','course:math'

關閉表:                                                disable ‘scores’

刪除表(刪除之前必須關閉):                 drop 'scores'

相關文章