cd /usr/local/hadoop/
./sbin/start-dfs.sh
cd /usr/local/hbase/
bin/start-hbase.sh
bin/hbase shell
create 'student','Sname','Ssex','Sage','Sdept','course'
通过describe命令查看“student”表的基本信息
describe 'student'
put 'student','95001','Sname','LiYing'
当运行命令:put ‘student’,’95001’,’Sname’,’LiYing’时,即为student表添加了学号为95001,名字为LiYing的一行数据,其行键为95001
put 'student','95001','course:math','80'
为95001行下的course列族的math列添加了一个数据
(1)delete命令
delete 'student','95001','Ssex'
命令执行截图如下, 即删除了student表中95001行下的Ssex列的所有数据
(2)deleteall命令
deleteall 'student','95001'
命令执行截图如下,即删除了student表中的95001行的全部数据。
HBase中有两个用于查看数据的命令:1. get命令,用于查看表的某一行数据;2. scan命令用于查看某个表的全部数据
(1) get命令
get 'student','95001'
scan 'student'
删除表有两步,第一步先让该表不可用,第二步删除表
disable 'student'
drop 'student'
查询表的历史版本,需要两步
1、在创建表的时候,指定保存的版本数(假设指定为5)
create 'teacher',{NAME=>'username',VERSIONS=>5}
2、插入数据然后更新数据,使其产生历史版本数据,注意:这里插入数据和更新数据都是用put命令
put 'teacher','91001','username','Mary'
put 'teacher','91001','username','Mary1'
put 'teacher','91001','username','Mary2'
put 'teacher','91001','username','Mary3'
put 'teacher','91001','username','Mary4'
put 'teacher','91001','username','Mary5'
3、查询时,指定查询的历史版本数。默认会查询出最新的数据。(有效取值为1到5)
get 'teacher','91001',{COLUMN=>'username',VERSIONS=>5}
exit