HBase Shell 操作
1.基本操作
(1) 進入HBase客戶端命令列
[[email protected] hbase]$ bin/hbase shell
(2) 檢視幫助命令
hbase(main):001:0> help
(3) 檢視當前資料庫中有哪些表
hbase(main):002:0> list
2.表的操作
(1) 建立表
hbase(main):002:0> create 'student','info'
(2) 插入資料到表
hbase(main):003:0> put 'student','1001','info:sex','male'
hbase(main):004:0> put 'student','1001','info:age','18'
hbase(main):005:0> put 'student','1002','info:name','Janna'
hbase(main):006:0> put 'student','1002','info:sex','female'
hbase(main):007:0> put 'student','1002','info:age','20'
(3) 掃描查看錶資料
hbase(main):008:0> scan 'student'
hbase(main):009:0> scan 'student',{STARTROW => '1001', STOPROW => '1001'}
hbase(main):010:0> scan 'student',{STARTROW => '1001'}
(4) 查看錶結構
hbase(main):011:0> describe 'student’
(5) 更新指定欄位的資料
hbase(main):012:0> put 'student','1001','info:name','Nick'
hbase(main):013:0> put 'student','1001','info:age','100'
(6) 檢視“指定行”或“指定列族:列”的資料
hbase(main):014:0> get 'student','1001'
hbase(main):015:0> get 'student','1001','info:name'
(7) 統計表資料行數
hbase(main):021:0> count 'student'
(8) 刪除資料
刪除某rowkey的全部資料:
hbase(main):016:0> deleteall 'student','1001'
刪除某rowkey的某一列資料:
hbase(main):017:0> delete 'student','1002','info:sex'
(9) 清空表資料
hbase(main):018:0> truncate 'student'
提示:清空表的操作順序為先disable,然後再truncate。
(10) 刪除表
首先需要先讓該表為disable狀態:
hbase(main):019:0> disable 'student'
然後才能drop這個表:
hbase(main):020:0> drop 'student'
提示:如果直接drop表,會報錯:ERROR: Table student is enabled. Disable it first.
(11) 變更表資訊
將info列族中的資料存放3個版本:
hbase(main):022:0> alter 'student',{NAME=>'info',VERSIONS=>3}