22.Hbase 常用命令

1.hbase shell

进入安装有Hbase的设备,执行hbase shell命令
这里最好使用hbase用户

[root@test028 opt]# hbase shell
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
17/12/20 16:35:45 INFO Configuration.deprecation: hadoop.native.lib is deprecated. Instead, use io.native.lib.available
HBase Shell; enter 'help<RETURN>' for list of supported commands.
Type "exit<RETURN>" to leave the HBase Shell
Version 1.2.0-cdh5.11.0, rUnknown, Wed Apr  5 20:10:34 PDT 2017

hbase(main):001:0>   #从这里你就进入了Hbase的控制界面

2.status 命令查看hbase组成

hbase(main):001:0> status 
1 active master, 0 backup masters, 4 servers, 0 dead, 1.5000 average load

3. version

该命令返回HBase系统使用的版本。它的语法如下:

hbase(main):002:0> version 
1.2.0-cdh5.11.0, rUnknown, Wed Apr  5 20:10:34 PDT 2017

4.whoami

该命令返回HBase用户详细信息。如果执行这个命令,返回当前执行HBase shell 的用户

hbase(main):003:0> whoami
hdfs (auth:SIMPLE)
    groups: hdfs, hadoop

5.Hbase创建表

在HBase shell中创建表的语法如下所示

create ‘<table name>’,’<column family>’   #其中column family 就是列足的意思

下面给出的是一个表名为test的样本模式。它有两个列族:“c1”和“c2”

Row keyc1c2

创建命令 create 'test', 'c1', ’c2’

hbase(main):003:0> create 'test','c1','c2'
0 row(s) in 28.3230 seconds

=> Hbase::Table - test

6.list 列出Hbase中的所有的表

hbase(main):002:0> list 
TABLE                                                                                                                                                                                                     
TEST_IA_TF                                                                                                                                                                                                
ismhash                                                                                                                                                                                                   
ismproinfo                                                                                                                                                                                                
mauser_info                                                                                                                                                                                               
test          #可以看到我们刚刚创建的test表                                                                                                                                                                                              
test01                                                                                                                                                                                                    
6 row(s) in 0.0080 seconds

=> ["TEST_IA_TF", "ismhash", "ismproinfo", "mauser_info", "test", "test01"]

7. 查看某个表是否存在 exists ‘test’

hbase(main):008:0> exists 'test'
Table test does exist                                                                                                                                                                                     
0 row(s) in 0.0670 seconds


8. 查看表的说明 describe ‘table name’

hbase(main):018:0> describe 'test'
Table test is ENABLED         #显示这个表是enable的状态                                                                                                                                                                             
test                                                                                                                                                                                                      
COLUMN FAMILIES DESCRIPTION                                                                                                                                                                               
{NAME => 'c1', BLOOMFILTER => 'ROW', VERSIONS => '1', IN_MEMORY => 'false', KEEP_DELETED_CELLS => 'FALSE', DATA_BLOCK_ENCODING => 'NONE', TTL => 'FOREVER', COMPRESSION => 'NONE', MIN_VERSIONS => '0', BL
OCKCACHE => 'true', BLOCKSIZE => '65536', REPLICATION_SCOPE => '0'}                                                                                                                                       
{NAME => 'c2', BLOOMFILTER => 'ROW', VERSIONS => '1', IN_MEMORY => 'false', KEEP_DELETED_CELLS => 'FALSE', DATA_BLOCK_ENCODING => 'NONE', TTL => 'FOREVER', COMPRESSION => 'NONE', MIN_VERSIONS => '0', BL
OCKCACHE => 'true', BLOCKSIZE => '65536', REPLICATION_SCOPE => '0'}                                                                                                                                       
2 row(s) in 0.1250 seconds

9.Hbase 禁用表 和 is_disabled ‘表名’ 检查表是否被禁用

hbase(main):034:0> disable 'test'
0 row(s) in 1.2890 seconds

禁用表之后,仍然可以通过 list 命令查看到。

hbase(main):043:0> is_disabled 'test'
true                                                                                                                                                                                                      
0 row(s) in 0.0110 seconds

也可以使用disable_all 来批量禁用,但是不建议这么做,除非你比较熟悉
hbase> disable_all 'r.*'
此命令用于禁用所有匹配给定正则表达式的表。disable_all命令的语法如下。

10.启用表 enable ‘test’ ,is_enabled ‘test’ 检查表是否启用

hbase(main):049:0> enable 'test'
0 row(s) in 1.2670 seconds

hbase(main):050:0> is_enabled 'test'
true                                                                                                                                                                                                      
0 row(s) in 0.0080 seconds

11.删除表

用drop命令可以删除表。在删除一个表之前必须先将其禁用。

hbase(main):009:0> disable 'test'   #禁用表
0 row(s) in 1.2970 seconds

hbase(main):012:0> is_disabled 'test' #检测表是否被禁用了
true                                                                                                                                                                                                      
0 row(s) in 0.0080 seconds

hbase(main):013:0> drop 'test'   #删除表
0 row(s) in 1.2480 seconds

hbase(main):015:0> exists 'test'   #检验表是否存在
Table test does not exist  

12.在Hbase中插入数据

创建

hbase(main):003:0> create 'test','c1','c2'
0 row(s) in 28.3230 seconds

=> Hbase::Table - test

插入数据

put 'test','1','c1:name','dailiang'   #1 是行
数据结构如下:
Row keyc1c2
IDname
1dailiang

当然c1 这个列族还可 以插入别的列,目前只插入了name列

13. 使用get读取数据

hbase(main):001:0> get 'test','1'
COLUMN                                              CELL                                                                                                                                                  
 c1:name                                            timestamp=1513775745720, value=dailiang                                                                                                               
1 row(s) in 0.2120 seconds

下面给出的是语法,使用get方法读取指定列。

hbase>get 'table name', ‘rowid’, {COLUMN => ‘column family:column name ’}

下面给出的示例,是用于读取HBase表中的特定列。

hbase(main):003:0>  get 'test', '1', {COLUMN=>'c1:name'}
COLUMN                                              CELL                                                                                                                                                  
 c1:name                                            timestamp=1513775745720, value=dailiang                                                                                                               
1 row(s) in 0.0120 seconds

14. scan 数据

scan 命令用于查看HTable数据。使用 scan 命令可以得到表中的数据。它的语法如下:

scan ‘<table name>’

下面的示例演示了如何使用scan命令从表中读取数据。在这里读取的是test表。

hbase(main):004:0> scan test1
NameError: undefined local variable or method `test1' for #<Object:0x49fdbe2b>

hbase(main):005:0> scan 'test'
ROW                                                 COLUMN+CELL                                                                                                                                           
 1                                                  column=c1:name, timestamp=1513775745720, value=dailiang                                                                                               
1 row(s) in 0.0450 seconds
    原文作者:经纶先生
    原文地址: https://www.jianshu.com/p/d18a1bf73d5c
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞