[Hbase]hbase命令列基本操作
阿新 • • 發佈:2019-01-10
-進入hbase shell
hbase shell
- 幫助help
help
- 檢視hbase version
version
- 檢視hbase 狀態
status
- 建立表
create 'tableName', 'columnFamily:column'
- 檢視存在哪些表
list
- 查看錶結構
describe 'tableName'
- 儲存資料
put 'tableName','rowkey','columnFamily:column','value'
- 獲取資料
- get 'tableName','rowkey','columnFamily:column'
- 掃描整個表資料
scan 'tableName'
- 掃描整個列簇
scan 'tableName', {COLUMN=>'info'}
- 刪除指定資料
delete 'tableName','rowkey',{'columnFamily:column'}
- 改變或新增一個列族
alter 'tableName',NAME=>'columnFamily',version=>版本號
- 查看錶中的記錄總數
count 'tableName'
-使用exists來檢查表是否存在
exists 'tableName'