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

HBase数据库基本操作

    • 一、启动Hadoop和HBase
        • 1.打开Hadoop
        • 2.启动HBase
        • 3.进入Shell界面
    • 二、HBase中创建表
    • 三、HBase数据库基本操作
        • 1.添加数据
        • 2.删除数据
        • 3.查看数据
        • 4.删除表
        • 5.查询表历史数据
        • 6、退出HBase数据库表操作

一、启动Hadoop和HBase

1.打开Hadoop

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

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作_第1张图片

2.启动HBase

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

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作_第2张图片

3.进入Shell界面

bin/hbase shell

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作_第3张图片

二、HBase中创建表

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

在这里插入图片描述

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

describe 'student'

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作_第4张图片

三、HBase数据库基本操作

1.添加数据

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

当运行命令:put ‘student’,’95001’,’Sname’,’LiYing’时,即为student表添加了学号为95001,名字为LiYing的一行数据,其行键为95001
在这里插入图片描述

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

为95001行下的course列族的math列添加了一个数据
在这里插入图片描述

2.删除数据

(1)delete命令

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

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

  deleteall 'student','95001'

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

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作_第6张图片

3.查看数据

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

get 'student','95001'

在这里插入图片描述
(2)scan命令

  scan 'student'

在这里插入图片描述

4.删除表

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

disable 'student'  
drop 'student'

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作_第7张图片

5.查询表历史数据

查询表的历史版本,需要两步
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'

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

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

大数据之Hadoop学习(六)利用Shell命令对HBase数据库基本操作_第9张图片

6、退出HBase数据库表操作

exit

在这里插入图片描述

你可能感兴趣的:(大数据之Hadoop学习)