Hbase Shell命令總結

2021-09-27 10:36:56 字數 901 閱讀 1846

1.create 『student』,『info』 建立乙個student表,並且有乙個info列族 [create 『表名』,『列族名1』,『列族名2』,『列族名n』]

2.describe/desc 『student』 描述表詳情

3.exists 『student』 判斷表是否存在

4.is_enabled/is_disabled 『student』 判斷是否啟用禁用表

enable/disable 『student』 啟用或禁用表

5.put 『student』,『rowkey1』,『info:name』,『xiaoming』 新增記錄,即插入資料,語法:put

,,family:column,

6.get 『student』,『rowkey1』 根據rowkey查詢某個記錄,語法:get

,,[family:column, …]

get 『student』,『rowkey1』,『info:name』

get 『student』,『rowkey1』,

7.scan 『student』 查詢所有記錄,語法:scan

,8.scan 『student』, 掃瞄前2條

9.scan 『student』, 掃瞄rowkey2及以後資料

10.scan 『student』, startrow、endrow必須大寫,否則報錯,查詢結果不包含等於endrow的結果集

11.count 『student』 統計表記錄數

12.drop 『student』 刪除表(刪除前,必須先disable禁用表)

13.alter 『student』,『info2』 給表student增加乙個列族info2

14.alter 『student』, 或者 alter 『student』, 『delete』 => 『info2』

hbase shell 常用 操作命令

create test cf put test row1 cf a value1 put test row2 cf b value2 put test row3 cf c value3 scan tablename get tablenmae rowkey1 get tablenmae rowkey...

hbase shell基本命令

部分 1.進入hbase shell console hbase home bin hbase shell 1 檢視當前使用者 hbase main whoami 2.表的管理 1 檢視有哪些表 hbase main list 2 建立表 語法 create 例如 建立表t1,有兩個family n...

Hbase shell命令簡單使用

hbase shell命令的簡單使用 進入hbase命令列 hbase shell顯示hbase中的表 list建立user表,包含info data兩個列族 create user info1 data1 create user 向user表中插入資訊,row key為rk0001,列族info中...