hbase shell 基本操作命令
具體的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'
相關文章
- Hbase shell的基本操作
- hbase shell命令
- HBase 基本操作
- HBase 系列(五)——HBase常用 Shell 命令
- hbase - [03] 客戶端常用命令(hbase shell)客戶端
- shell基本命令
- hbase之hbase shell
- 《HBase 不睡覺》第三章 – HBase 基本操作
- 《HBase 不睡覺》第三章 - HBase 基本操作
- Linux基本操作命令Linux
- MySQL基本操作命令MySql
- kvm基本操作命令
- Linux 基本操作命令Linux
- Vim命令的基本操作
- Storm系列(二)常用shell命令操作ORM
- ubuntu的ufw基本操作命令Ubuntu
- Hbase(二)Hbase常用操作
- shell指令碼基本概念和命令小結指令碼
- HBase 基本入門篇
- python學習1——1.3shell基本命令簡解Python
- Git學習3 --- Git命令列基本操作Git命令列
- Git基本命令 -- 基本工作流程 + 檔案相關操作Git
- Shell命令
- HBase的基本原理
- hbase與phoenix整合(使用phoenix操作hbase資料)
- Redis 基本資料型別(Set) 的操作命令Redis資料型別
- Linux基本命令操作第四章Linux
- shell基本語法
- shell基本知識
- Shell 基本常識
- Hive shell 命令Hive
- HDFS shell命令
- Shell printf 命令
- Shell test 命令
- Shell命令列命令列
- shell命令(一)
- 常用shell 命令
- 『忘了再學』Shell基礎 — 4、Bash基本功能(history命令)
- HBase Shell 十大花式玩兒法