欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

程序员文章站 2022-05-01 10:12:55
...

一、启动Hadoop和HBase

1.打开Hadoop

cd /usr/local/hadoop/
./sbin/start-dfs.sh

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

2.启动HBase

cd /usr/local/hbase/
bin/start-hbase.sh

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

3.进入Shell界面

bin/hbase shell

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

二、HBase中创建表

  create 'student','Sname','Ssex','Sage','Sdept','course'

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

通过describe命令查看“student”表的基本信息

describe 'student'

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

三、HBase数据库基本操作

1.添加数据

put 'student','95001','Sname','LiYing'

当运行命令:put ‘student’,’95001’,’Sname’,’LiYing’时,即为student表添加了学号为95001,名字为LiYing的一行数据,其行键为95001
大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

  put 'student','95001','course:math','80'

为95001行下的course列族的math列添加了一个数据
大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

2.删除数据

(1)delete命令

  delete 'student','95001','Ssex'

命令执行截图如下, 即删除了student表中95001行下的Ssex列的所有数据
大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作
(2)deleteall命令

  deleteall 'student','95001'

命令执行截图如下,即删除了student表中的95001行的全部数据。

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

3.查看数据

HBase中有两个用于查看数据的命令:1. get命令,用于查看表的某一行数据;2. scan命令用于查看某个表的全部数据
(1) get命令

get 'student','95001'

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作
(2)scan命令

  scan 'student'

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

4.删除表

删除表有两步,第一步先让该表不可用,第二步删除表

disable 'student'  
drop 'student'

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

5.查询表历史数据

查询表的历史版本,需要两步
1、在创建表的时候,指定保存的版本数(假设指定为5)

  create 'teacher',{NAME=>'username',VERSIONS=>5}

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作
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'

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作
3、查询时,指定查询的历史版本数。默认会查询出最新的数据。(有效取值为1到5)

  get 'teacher','91001',{COLUMN=>'username',VERSIONS=>5}

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作

6、退出HBase数据库表操作

exit

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作