hbase 学习step

版本:V1.3
第1章 HBase简介
1.1 HBase定义
HBase是一种分布式、可扩展、支持海量数据存储的NoSQL数据库。
1.2 HBase数据模型
逻辑上,HBase的数据模型同关系型数据库很类似,数据存储在一张表中,有行有列。但从HBase的底层物理存储结构(K-V)来看,HBase更像是一个multi-dimensional map。
1.2.1 HBase逻辑结构

1.2.2 HBase物理存储结构

1.2.3 数据模型
1)Name Space
命名空间,类似于关系型数据库的DatabBase概念,每个命名空间下有多个表。HBase有两个自带的命名空间,分别是hbase和default,hbase中存放的是HBase内置的表,default表是用户默认使用的命名空间。
2)Region
类似于关系型数据库的表概念。不同的是,HBase定义表时只需要声明列族即可,不需要声明具体的列。这意味着,往HBase写入数据时,字段可以动态、按需指定。因此,和关系型数据库相比,HBase能够轻松应对字段变更的场景。
3)Row
HBase表中的每行数据都由一个RowKey和多个Column(列)组成,数据是按照RowKey的字典顺序存储的,并且查询数据时只能根据RowKey进行检索,所以RowKey的设计十分重要。
4)Column
HBase中的每个列都由Column Family(列族)和Column Qualifier(列限定符)进行限定,例如info:name,info:age。建表时,只需指明列族,而列限定符无需预先定义。
5)Time Stamp
用于标识数据的不同版本(version),每条数据写入时,如果不指定时间戳,系统会自动为其加上该字段,其值为写入HBase的时间。
6)Cell
由{rowkey, column Family:column Qualifier, time Stamp} 唯一确定的单元。cell中的数据是没有类型的,全部是字节码形式存贮。
1.3 HBase基本架构

架构角色:
1)Region Server
Region Server为 Region的管理者,其实现类为HRegionServer,主要作用如下:
对于数据的操作:get, put, delete;
对于Region的操作:splitRegion、compactRegion。
2)Master
Master是所有Region Server的管理者,其实现类为HMaster,主要作用如下:
​对于表的操作:create, delete, alter
对于RegionServer的操作:分配regions到每个RegionServer,监控每个RegionServer的状态,负载均衡和故障转移。
3)Zookeeper
HBase通过Zookeeper来做Master的高可用、RegionServer的监控、元数据的入口以及集群配置的维护等工作。
4)HDFS
HDFS为HBase提供最终的底层数据存储服务,同时为HBase提供高可用的支持。
第2章 HBase快速入门
2.1 HBase安装部署
2.1.1 Zookeeper正常部署
首先保证Zookeeper集群的正常部署,并启动之:
[atguigu@hadoop102 zookeeper-3.4.10]$ bin/zkServer.sh start
[atguigu@hadoop103 zookeeper-3.4.10]$ bin/zkServer.sh start
[atguigu@hadoop104 zookeeper-3.4.10]$ bin/zkServer.sh start
2.1.2 Hadoop正常部署
Hadoop集群的正常部署并启动:
[atguigu@hadoop102 hadoop-2.7.2]$ sbin/start-dfs.sh
[atguigu@hadoop103 hadoop-2.7.2]$ sbin/start-yarn.sh
2.1.3 HBase的解压
解压Hbase到指定目录:
[atguigu@hadoop102 software]$ tar -zxvf hbase-1.3.1-bin.tar.gz -C /opt/module
2.1.4 HBase的配置文件
修改HBase对应的配置文件。
1)hbase-env.sh修改内容:
export JAVA_HOME=/opt/module/jdk1.6.0_144
export HBASE_MANAGES_ZK=false
2)hbase-site.xml修改内容:


​​hbase.rootdir
​​hdfs://hadoop102:9000/HBase


​​hbase.cluster.distributed
​​true


​​hbase.master.port
​​16000


​​hbase.zookeeper.quorum
​ hadoop102,hadoop103,hadoop104


​​hbase.zookeeper.property.dataDir
​ /opt/module/zookeeper-3.4.10/zkData


3)regionservers:
hadoop102
hadoop103
hadoop104
4)软连接hadoop配置文件到HBase:
[atguigu@hadoop102 module]$ ln -s /opt/module/hadoop-2.7.2/etc/hadoop/core-site.xml /opt/module/hbase/conf/core-site.xml
[atguigu@hadoop102 module]$ ln -s /opt/module/hadoop-2.7.2/etc/hadoop/hdfs-site.xml /opt/module/hbase/conf/hdfs-site.xml
2.1.5 HBase远程发送到其他集群
[atguigu@hadoop102 module]$ xsync hbase/
2.1.6 HBase服务的启动
1.启动方式
[atguigu@hadoop102 hbase]$ bin/hbase-daemon.sh start master
[atguigu@hadoop102 hbase]$ bin/hbase-daemon.sh start regionserver
提示:如果集群之间的节点时间不同步,会导致regionserver无法启动,抛出ClockOutOfSyncException异常。
修复提示:
a、同步时间服务
请参看帮助文档:《尚硅谷大数据技术之Hadoop入门》
b、属性:hbase.master.maxclockskew设置更大的值

hbase.master.maxclockskew
180000
Time difference of regionserver from master

2.启动方式2
[atguigu@hadoop102 hbase]$ bin/start-hbase.sh
对应的停止服务:
[atguigu@hadoop102 hbase]$ bin/stop-hbase.sh
2.1.7 查看HBase页面
启动成功后,可以通过“host:port”的方式来访问HBase管理页面,例如:
http://hadoop102:16010
2.2 HBase Shell操作
2.2.1 基本操作
1.进入HBase客户端命令行
[atguigu@hadoop102 hbase]$ bin/hbase shell
2.查看帮助命令
hbase(main):001:0> help
3.查看当前数据库中有哪些表
hbase(main):002:0> list
2.2.2 表的操作
1.创建表
hbase(main):002:0> create ‘student’,‘info’
2.插入数据到表
hbase(main):003:0> put ‘student’,‘1001’,‘info:sex’,‘male’
hbase(main):004:0> put ‘student’,‘1001’,‘info:age’,‘18’
hbase(main):005:0> put ‘student’,‘1002’,‘info:name’,‘Janna’
hbase(main):006:0> put ‘student’,‘1002’,‘info:sex’,‘female’
hbase(main):007:0> put ‘student’,‘1002’,‘info:age’,‘20’
3.扫描查看表数据
hbase(main):008:0> scan ‘student’
hbase(main):009:0> scan ‘student’,{STARTROW => ‘1001’, STOPROW => ‘1001’}
hbase(main):010:0> scan ‘student’,{STARTROW => ‘1001’}
4.查看表结构
hbase(main):011:0> describe ‘student’
5.更新指定字段的数据
hbase(main):012:0> put ‘student’,‘1001’,‘info:name’,‘Nick’
hbase(main):013:0> put ‘student’,‘1001’,‘info:age’,‘100’
6.查看“指定行”或“指定列族:列”的数据
hbase(main):014:0> get ‘student’,‘1001’
hbase(main):015:0> get ‘student’,‘1001’,‘info:name’
7.统计表数据行数
hbase(main):021:0> count ‘student’
8.删除数据
删除某rowkey的全部数据:
hbase(main):016:0> deleteall ‘student’,‘1001’
删除某rowkey的某一列数据:
hbase(main):017:0> delete ‘student’,‘1002’,‘info:sex’
9.清空表数据
hbase(main):018:0> truncate ‘student’
提示:清空表的操作顺序为先disable,然后再truncate。
10.删除表
首先需要先让该表为disable状态:
hbase(main):019:0> disable ‘student’
然后才能drop这个表:
hbase(main):020:0> drop ‘student’
提示:如果直接drop表,会报错:ERROR: Table student is enabled. Disable it first.
11.变更表信息
将info列族中的数据存放3个版本:
hbase(main):022:0> alter ‘student’,{NAME=>‘info’,VERSIONS=>3}
hbase(main):022:0> get ‘student’,‘1001’,{COLUMN=>‘info:name’,VERSIONS=>3}
第3章 HBase进阶
3.1 架构原理

1)StoreFile
保存实际数据的物理文件,StoreFile以HFile的形式存储在HDFS上。每个Store会有一个或多个StoreFile(HFile),数据在每个StoreFile中都是有序的。
2)MemStore
写缓存,由于HFile中的数据要求是有序的,所以数据是先存储在MemStore中,排好序后,等到达刷写时机才会刷写到HFile,每次刷写都会形成一个新的HFile。
3)WAL
由于数据要经MemStore排序后才能刷写到HFile,但把数据保存在内存中会有很高的概率导致数据丢失,为了解决这个问题,数据会先写在一个叫做Write-Ahead logfile的文件中,然后再写入MemStore中。所以在系统出现故障的时候,数据可以通过这个日志文件重建。
3.2 写流程

写流程:
1)Client先访问zookeeper,获取hbase:meta表位于哪个Region Server。
2)访问对应的Region Server,获取hbase:meta表,根据读请求的namespace:table/rowkey,查询出目标数据位于哪个Region Server中的哪个Region中。并将该table的region信息以及meta表的位置信息缓存在客户端的meta cache,方便下次访问。
3)与目标Region Server进行通讯;
4)将数据顺序写入(追加)到WAL;
5)将数据写入对应的MemStore,数据会在MemStore进行排序;
6)向客户端发送ack;
7)等达到MemStore的刷写时机后,将数据刷写到HFile。
3.3 MemStore Flush

MemStore刷写时机:
1.当某个memstroe的大小达到了hbase.hregion.memstore.flush.size(默认值128M),其所在region的所有memstore都会刷写。
当memstore的大小达到了
hbase.hregion.memstore.flush.size(默认值128M)

  • hbase.hregion.memstore.block.multiplier(默认值4)
    时,会阻止继续往该memstore写数据。
    2.当region server中memstore的总大小达到
    java_heapsize
    *hbase.regionserver.global.memstore.size(默认值0.4)
    hbase.regionserver.global.memstore.size.lower.limit(默认值0.95),
    region会按照其所有memstore的大小顺序(由大到小)依次进行刷写。直到region server中所有memstore的总大小减小到上述值以下。
    当region server中memstore的总大小达到
    java_heapsize
    hbase.regionserver.global.memstore.size(默认值0.4)
    时,会阻止继续往所有的memstore写数据。
  1. 到达自动刷写的时间,也会触发memstore flush。自动刷新的时间间隔由该属性进行配置hbase.regionserver.optionalcacheflushinterval(默认1小时)。
    4.当WAL文件的数量超过hbase.regionserver.max.logs,region会按照时间顺序依次进行刷写,直到WAL文件数量减小到hbase.regionserver.max.log以下(该属性名已经废弃,现无需手动设置,最大值为32)。
    3.4 读流程

读流程
1)Client先访问zookeeper,获取hbase:meta表位于哪个Region Server。
2)访问对应的Region Server,获取hbase:meta表,根据读请求的namespace:table/rowkey,查询出目标数据位于哪个Region Server中的哪个Region中。并将该table的region信息以及meta表的位置信息缓存在客户端的meta cache,方便下次访问。
3)与目标Region Server进行通讯;
4)分别在Block Cache(读缓存),MemStore和Store File(HFile)中查询目标数据,并将查到的所有数据进行合并。此处所有数据是指同一条数据的不同版本(time stamp)或者不同的类型(Put/Delete)。
5) 将从文件中查询到的数据块(Block,HFile数据存储单元,默认大小为64KB)缓存到Block Cache。
6)将合并后的最终结果返回给客户端。
3.5 StoreFile Compaction
由于memstore每次刷写都会生成一个新的HFile,且同一个字段的不同版本(timestamp)和不同类型(Put/Delete)有可能会分布在不同的HFile中,因此查询时需要遍历所有的HFile。为了减少HFile的个数,以及清理掉过期和删除的数据,会进行StoreFile Compaction。
Compaction分为两种,分别是Minor Compaction和Major Compaction。Minor Compaction会将临近的若干个较小的HFile合并成一个较大的HFile,但不会清理过期和删除的数据。Major Compaction会将一个Store下的所有的HFile合并成一个大HFile,并且会清理掉过期和删除的数据。

3.6 Region Split
默认情况下,每个Table起初只有一个Region,随着数据的不断写入,Region会自动进行拆分。刚拆分时,两个子Region都位于当前的Region Server,但处于负载均衡的考虑,HMaster有可能会将某个Region转移给其他的Region Server。
Region Split时机:
1.当1个region中的某个Store下所有StoreFile的总大小超过hbase.hregion.max.filesize,该Region就会进行拆分(0.94版本之前)。
2.当1个region中的某个Store下所有StoreFile的总大小超过Min(R^2 * “hbase.hregion.memstore.flush.size”,hbase.hregion.max.filesize"),该Region就会进行拆分,其中R为当前Region Server中属于该Table的个数(0.94版本之后)。

第4章 HBase API
4.1 环境准备
新建项目后在pom.xml中添加依赖:

org.apache.hbase
hbase-server
1.3.1

org.apache.hbase hbase-client 1.3.1 4.2 HBaseAPI 4.2.1 获取Configuration对象 public static Configuration conf; static{ ​//使用HBaseConfiguration的单例方法实例化 ​conf = HBaseConfiguration.create(); conf.set("hbase.zookeeper.quorum", "192.166.9.102"); conf.set("hbase.zookeeper.property.clientPort", "2181"); } 4.2.2 判断表是否存在 public static boolean isTableExist(String tableName) throws MasterNotRunningException, ZooKeeperConnectionException, IOException{ ​//在HBase中管理、访问表需要先创建HBaseAdmin对象 //Connection connection = ConnectionFactory.createConnection(conf); //HBaseAdmin admin = (HBaseAdmin) connection.getAdmin(); ​HBaseAdmin admin = new HBaseAdmin(conf); ​return admin.tableExists(tableName); } 4.2.3 创建表 public static void createTable(String tableName, String... columnFamily) throws MasterNotRunningException, ZooKeeperConnectionException, IOException{ ​HBaseAdmin admin = new HBaseAdmin(conf); ​//判断表是否存在 ​if(isTableExist(tableName)){ ​​System.out.println("表" + tableName + "已存在"); ​​//System.exit(0); ​}else{ ​​//创建表属性对象,表名需要转字节 ​​HTableDescriptor descriptor = new HTableDescriptor(TableName.valueOf(tableName)); ​​//创建多个列族 ​​for(String cf : columnFamily){ ​​​descriptor.addFamily(new HColumnDescriptor(cf)); ​​} ​​//根据对表的配置,创建表 ​​admin.createTable(descriptor); ​​System.out.println("表" + tableName + "创建成功!"); ​} } 4.2.4 删除表 public static void dropTable(String tableName) throws MasterNotRunningException, ZooKeeperConnectionException, IOException{ ​HBaseAdmin admin = new HBaseAdmin(conf); ​if(isTableExist(tableName)){ ​​admin.disableTable(tableName); ​​admin.deleteTable(tableName); ​​System.out.println("表" + tableName + "删除成功!"); ​}else{ ​​System.out.println("表" + tableName + "不存在!"); ​} } 4.2.5 向表中插入数据 public static void addRowData(String tableName, String rowKey, String columnFamily, String column, String value) throws IOException{ ​//创建HTable对象 ​HTable hTable = new HTable(conf, tableName); ​//向表中插入数据 ​Put put = new Put(Bytes.toBytes(rowKey)); ​//向Put对象中组装数据 ​put.add(Bytes.toBytes(columnFamily), Bytes.toBytes(column), Bytes.toBytes(value)); ​hTable.put(put); ​hTable.close(); ​System.out.println("插入数据成功"); } 4.2.6 删除多行数据 public static void deleteMultiRow(String tableName, String... rows) throws IOException{ ​HTable hTable = new HTable(conf, tableName); ​List deleteList = new ArrayList(); ​for(String row : rows){ ​​Delete delete = new Delete(Bytes.toBytes(row)); ​​deleteList.add(delete); ​} ​hTable.delete(deleteList); ​hTable.close(); } 4.2.7 获取所有数据 public static void getAllRows(String tableName) throws IOException{ ​HTable hTable = new HTable(conf, tableName); ​//得到用于扫描region的对象 ​Scan scan = new Scan(); ​//使用HTable得到resultcanner实现类的对象 ​ResultScanner resultScanner = hTable.getScanner(scan); ​for(Result result : resultScanner){ ​​Cell[] cells = result.rawCells(); ​​for(Cell cell : cells){ ​​​//得到rowkey ​​​System.out.println("行键:" + Bytes.toString(CellUtil.cloneRow(cell))); ​​​//得到列族 ​​​System.out.println("列族" + Bytes.toString(CellUtil.cloneFamily(cell))); ​​​System.out.println("列:" + Bytes.toString(CellUtil.cloneQualifier(cell))); ​​​System.out.println("值:" + Bytes.toString(CellUtil.cloneValue(cell))); ​​} ​} } 4.2.8 获取某一行数据 public static void getRow(String tableName, String rowKey) throws IOException{ ​HTable table = new HTable(conf, tableName); ​Get get = new Get(Bytes.toBytes(rowKey)); ​//get.setMaxVersions();显示所有版本 //get.setTimeStamp();显示指定时间戳的版本 ​Result result = table.get(get); ​for(Cell cell : result.rawCells()){ ​​System.out.println("行键:" + Bytes.toString(result.getRow())); ​​System.out.println("列族" + Bytes.toString(CellUtil.cloneFamily(cell))); ​​System.out.println("列:" + Bytes.toString(CellUtil.cloneQualifier(cell))); ​​System.out.println("值:" + Bytes.toString(CellUtil.cloneValue(cell))); ​​System.out.println("时间戳:" + cell.getTimestamp()); ​} } 4.2.9 获取某一行指定“列族:列”的数据 public static void getRowQualifier(String tableName, String rowKey, String family, String qualifier) throws IOException{ ​HTable table = new HTable(conf, tableName); ​Get get = new Get(Bytes.toBytes(rowKey)); ​get.addColumn(Bytes.toBytes(family), Bytes.toBytes(qualifier)); ​Result result = table.get(get); ​for(Cell cell : result.rawCells()){ ​​System.out.println("行键:" + Bytes.toString(result.getRow())); ​​System.out.println("列族" + Bytes.toString(CellUtil.cloneFamily(cell))); ​​System.out.println("列:" + Bytes.toString(CellUtil.cloneQualifier(cell))); ​​System.out.println("值:" + Bytes.toString(CellUtil.cloneValue(cell))); ​} } 4.3 MapReduce 通过HBase的相关JavaAPI,我们可以实现伴随HBase操作的MapReduce过程,比如使用MapReduce将数据从本地文件系统导入到HBase的表中,比如我们从HBase中读取一些原始数据后使用MapReduce做数据分析。 4.3.1 官方HBase-MapReduce 1.查看HBase的MapReduce任务的执行 $ bin/hbase mapredcp 2.环境变量的导入 (1)执行环境变量的导入(临时生效,在命令行执行下述操作) $ export HBASE_HOME=/opt/module/hbase $ export HADOOP_HOME=/opt/module/hadoop-2.7.2 $ export HADOOP_CLASSPATH=`${HBASE_HOME}/bin/hbase mapredcp`

(2)永久生效:在/etc/profile配置
export HBASE_HOME=/opt/module/hbase
export HADOOP_HOME=/opt/module/hadoop-2.7.2
并在hadoop-env.sh中配置:(注意:在for循环之后配)
export HADOOP_CLASSPATH=$HADOOP_CLASSPATH:/opt/module/hbase/lib/*
3.运行官方的MapReduce任务
– 案例一:统计Student表中有多少行数据
$ /opt/module/hadoop-2.7.2/bin/yarn jar lib/hbase-server-1.3.1.jar rowcounter student

– 案例二:使用MapReduce将本地数据导入到HBase
1)在本地创建一个tsv格式的文件:fruit.tsv
1001​Apple​Red
1002​Pear​Yellow
1003​Pineapple​Yellow

2)创建Hbase表
Hbase(main):001:0> create ‘fruit’,‘info’

3)在HDFS中创建input_fruit文件夹并上传fruit.tsv文件
$ /opt/module/hadoop-2.7.2/bin/hdfs dfs -mkdir /input_fruit/
$ /opt/module/hadoop-2.7.2/bin/hdfs dfs -put fruit.tsv /input_fruit/

4) 执行MapReduce到HBase的fruit表中
$ /opt/module/hadoop-2.7.2/bin/yarn jar lib/hbase-server-1.3.1.jar importtsv
-Dimporttsv.columns=HBASE_ROW_KEY,info:name,info:color fruit
hdfs://hadoop102:9000/input_fruit

5) 使用scan命令查看导入后的结果
Hbase(main):001:0> scan ‘fruit’
4.3.2 自定义HBase-MapReduce1
目标:将fruit表中的一部分数据,通过MR迁入到fruit_mr表中。
分步实现:
1.构建ReadFruitMapper类,用于读取fruit表中的数据
package com.atguigu;

import java.io.IOException;
import org.apache.hadoop.hbase.Cell;
import org.apache.hadoop.hbase.CellUtil;
import org.apache.hadoop.hbase.client.Put;
import org.apache.hadoop.hbase.client.Result;
import org.apache.hadoop.hbase.io.ImmutableBytesWritable;
import org.apache.hadoop.hbase.mapreduce.TableMapper;
import org.apache.hadoop.hbase.util.Bytes;

public class ReadFruitMapper extends TableMapper<ImmutableBytesWritable, Put> {

​@Override
​protected void map(ImmutableBytesWritable key, Result value, Context context)
​throws IOException, InterruptedException {
​//将fruit的name和color提取出来,相当于将每一行数据读取出来放入到Put对象中。
​​Put put = new Put(key.get());
​​//遍历添加column行
​​for(Cell cell: value.rawCells()){
​​​//添加/克隆列族:info
​​​if(“info”.equals(Bytes.toString(CellUtil.cloneFamily(cell)))){
​​​​//添加/克隆列:name
​​​​if(“name”.equals(Bytes.toString(CellUtil.cloneQualifier(cell)))){
​​​​​//将该列cell加入到put对象中
​​​​​put.add(cell);
​​​​​//添加/克隆列:color
​​​​}else if(“color”.equals(Bytes.toString(CellUtil.cloneQualifier(cell)))){
​​​​​//向该列cell加入到put对象中
​​​​​put.add(cell);
​​​​}
​​​}
​​}
​​//将从fruit读取到的每行数据写入到context中作为map的输出
​​context.write(key, put);
​}
}
2. 构建WriteFruitMRReducer类,用于将读取到的fruit表中的数据写入到fruit_mr表中
package com.atguigu.Hbase_mr;

import java.io.IOException;
import org.apache.hadoop.Hbase.client.Put;
import org.apache.hadoop.Hbase.io.ImmutableBytesWritable;
import org.apache.hadoop.Hbase.mapreduce.TableReducer;
import org.apache.hadoop.io.NullWritable;

public class WriteFruitMRReducer extends TableReducer<ImmutableBytesWritable, Put, NullWritable> {
​@Override
​protected void reduce(ImmutableBytesWritable key, Iterable values, Context context)
​throws IOException, InterruptedException {
​​//读出来的每一行数据写入到fruit_mr表中
​​for(Put put: values){
​​​context.write(NullWritable.get(), put);
​​}
​}
}
3.构建Fruit2FruitMRRunner extends Configured implements Tool用于组装运行Job任务
//组装Job
​public int run(String[] args) throws Exception {
​​//得到Configuration
​​Configuration conf = this.getConf();
​​//创建Job任务
​​Job job = Job.getInstance(conf, this.getClass().getSimpleName());
​​job.setJarByClass(Fruit2FruitMRRunner.class);

​​//配置Job
​​Scan scan = new Scan();
​​scan.setCacheBlocks(false);
​​scan.setCaching(500);

​​//设置Mapper,注意导入的是mapreduce包下的,不是mapred包下的,后者是老版本
​​TableMapReduceUtil.initTableMapperJob(

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值