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 'scorse','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'

你可能感兴趣的:(shell,hbase)