HBase常用 Shell 命令

2021-10-06 03:32:53 字數 1004 閱讀 2145

開啟hbase shell:

hbase shell
獲取幫助

# 獲取幫助

help

# 獲取命令的詳細資訊

help 'status'

檢視伺服器狀態

status
檢視版本資訊

version
檢視所有表

list
建立表

命令格式: create 『表名稱』, 『列族名稱1』,『列族名稱2』,『列名稱n』

# 建立一張名為student的表,包含基本資訊(baseinfo)、學校資訊(schoolinfo)兩個列族

create 'student','baseinfo','schoolinfo'

檢視表的基本資訊

命令格式:desc 『表名』

describe 'student'

表的啟用/禁用

enable和disable可以啟用/禁用這個表,is_enabled和is_disabled來檢查表是否被禁用

# 禁用表

disable 'student'

# 檢查表是否被禁用

is_disabled 'student'

# 啟用表

enable 'student'

# 檢查表是否被啟用

is_enabled 'student'

檢查表是否存在

exists 'student'
刪除表

# 刪除表前需要先禁用表

disable 'student'

# 刪除表

drop 'student'

詳情資料:

HBase 常用Shell命令

1.檢視hbase中存在的所有表 list hbase main list2.建立新的表 create 使用create命令來建立乙個新的表。在建立的時候,必須指定表名和列族名 hbase中的表至少有乙個列族 create hbase main create test 3.檢視表結構 describ...

HBASE 常用shell命令

1 建立表和列族 create student info address 2 向表中插入資料 put student 1 info age 20 put student 1 info name wang put student 1 info class 1 put student 1 address...

HBase常用shell命令

在hbase的根目錄下 bin hbase shell 如果配置了環境變數 hbase shellhbase main 001 0 helplist建立user表 包含info data兩個列族 create user info data 或者create user 向user表中插入資訊,row ...