赞
踩
进入HBase客户端命令操作界面
$ bin/hbase shell
##1、查看帮助命令
hbase(main):001:0> help
##2、查看当前数据库中有哪些表
hbase(main):002:0> list
##3、创建一张表
hbase(main):003:0> create ‘student’,‘info’
##4、向表中存储一些数据
hbase(main):004:0> put ‘student’,‘1001’,‘info:name’,‘Thomas’
hbase(main):005:0> put ‘student’,‘1001’,‘info:sex’,‘male’
hbase(main):006:0> put ‘student’,‘1001’,‘info:age’,‘18’
##5、扫描查看存储的数据
hbase(main):007:0> scan ‘student’
或:查看某个rowkey范围内的数据
hbase(main):014:0> scan ‘student’,{STARTROW => ‘1001’,STOPROW => ‘1007’}
##6、查看表结构
hbase(main):009:0> describe ‘student’
##7、更新指定字段的数据
hbase(main):009:0> put ‘student’,‘1001’,‘info:name’,‘Nick’
hbase(main):010:0> put ‘student’,‘1001’,‘info:age’,‘100’
查看更新后的数据:
##8、查看指定行的数据
hbase(main):012:0> get ‘student’,‘1001’
或:查看指定行指定列或列族的数据
hbase(main):013:0> get ‘student’,‘1001’,‘info:name’
##9、删除数据
删除某一个rowKey全部的数据
hbase(main):015:0> deleteall ‘student’,‘1001’
删除掉某个rowKey中某一列的数据
hbase(main):016:0> delete ‘student’,‘1001’,‘info:sex’
##10、清空表数据
hbase(main):017:0> truncate ‘student’
##11、删除表
首先需要先让该表为disable状态,使用命令:
hbase(main):018:0> disable ‘student’
然后才能drop这个表,使用命令:
hbase(main):019:0> drop ‘student’
(尖叫提示:如果直接drop表,会报错:Drop the named table. Table must first be disabled)
12.13、统计一张表有多少行数据
hbase(main):020:0> count ‘student’
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。