HBase_HBase2.0 Java API 操作指南 (五) 计数器

2024-05-03 05:58

本文主要是介绍HBase_HBase2.0 Java API 操作指南 (五) 计数器,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

HBase 的计数器在 点击流和广告统计中非常常用。本篇文章我们将从 shell 和 java API 两个方面去探索 Hbase 的计数器的使用。

 

1.shell 操作

2.JavaApi

   i.单计数器

  ii.多计数器

 

0.计数器介绍

在Hase 中,计数器机制是一种原子操作,需要注意的是,计数器是面向列的操作。即每次对特定计数器的操作只会锁住一列,而不是一行。然后读取数据,在对当前数据进行加法操作,最后再写入Hbase并释放该列的锁。在操作的过程中用户是可以访问这一行的其他数据的,否则如果用户对一整行的数据加锁然后读取数据,会造成大量资源抢占问题,这在一个高负载的系统中是致命的。

 

 

1.shell 操作

 

 创建一张测试表 表名 hits, 拥有 pu, uv 两个列族

create 'hits','pv','uv'

 

创建并修改计数器

NOTE : 没有计数器初始化单独的指令,初始化和操作指令相同

incr 'hits','20200424','pv:1',1
incr 'hits','20200424','uv:1',2

 

获取计数器的值

 get_counter 'hits','20200424','uv:1'

输出:

hbase(main):002:0> get_counter 'hits','20200424','uv:1'
COUNTER VALUE = 2
Took 0.8213 seconds   

 

扫描表

scan 'hits'

ROW                         COLUMN+CELL                                                                  20200423                   column=uv:1, timestamp=1587662324121, value=\x00\x00\x00\x00\x00\x00\x00\x04 20200424                   column=pv:1, timestamp=1587661726573, value=\x00\x00\x00\x00\x00\x00\x00\x01 20200424                   column=uv:1, timestamp=1587661734932, value=\x00\x00\x00\x00\x00\x00\x00\x02 
2 row(s)
Took 0.0296 seconds  

注意:在表中存储的数据实际是 bytes 字节数组,所以会看到数据实际上是不可直接读的。

 

 

操作计数器的指令

incr 'table' 'rowKey' 'columnFamily:column' 'increment-value'

'increment-value' 不同的值对计数器产生的影响

比零大的值                 按给定值增加计数器中的数值
零                               得到计数器当前值,与Shell命令get_counter的返回值相同
比零大的值                减少计数器的当前值

 

=========================================

 

2.JavaAPI

   i.单计数器

单计数器的相关Java API

  /*** See {@link #incrementColumnValue(byte[], byte[], byte[], long, Durability)}* <p>* The {@link Durability} is defaulted to {@link Durability#SYNC_WAL}.* @param row The row that contains the cell to increment.* @param family The column family of the cell to increment.* @param qualifier The column qualifier of the cell to increment.* @param amount The amount to increment the cell with (or decrement, if the* amount is negative).* @return The new value, post increment.* @throws IOException if a remote or network exception occurs.*/long incrementColumnValue(byte[] row, byte[] family, byte[] qualifier,long amount) throws IOException;/*** Atomically increments a column value. If the column value already exists* and is not a big-endian long, this could throw an exception. If the column* value does not yet exist it is initialized to <code>amount</code> and* written to the specified column.** <p>Setting durability to {@link Durability#SKIP_WAL} means that in a fail* scenario you will lose any increments that have not been flushed.* @param row The row that contains the cell to increment.* @param family The column family of the cell to increment.* @param qualifier The column qualifier of the cell to increment.* @param amount The amount to increment the cell with (or decrement, if the* amount is negative).* @param durability The persistence guarantee for this increment.* @return The new value, post increment.* @throws IOException if a remote or network exception occurs.*/long incrementColumnValue(byte[] row, byte[] family, byte[] qualifier,long amount, Durability durability) throws IOException;

注意 Java API 中也不存在对计数器初始化的api

如果想初始化一个计数器,可以像下面这样操作

long value2 = table.incrementColumnValue(Bytes.toBytes("20200423"),Bytes.toBytes("uv"),Bytes.toBytes("2"),0);
System.out.println(value2);

其中函数的返回值会返回计数器在修改过后的值

 

 

 

  ii.多计数器

另一个增加计数器的途径,是 table 的 increment() 方法。该方法可以操作多列数据。

首先我们需要创建一个Increment 对象,并把需要操作的装载进去。

Increment multiIncrement = new Increment(Bytes.toBytes("20200224"));
multiIncrement.addColumn(Bytes.toBytes("pv"),Bytes.toBytes("1"),-1);
multiIncrement.addColumn(Bytes.toBytes("uv"),Bytes.toBytes("1"),1);
multiIncrement.addColumn(Bytes.toBytes("pv"),Bytes.toBytes("2"),1);
multiIncrement.addColumn(Bytes.toBytes("uv"),Bytes.toBytes("2"),4);
Result result = table.increment(multiIncrement);

 

 

单计数器 与 多计数器 API操作示例

package hbase_2.counter;import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.Cell;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.KeyValue;
import org.apache.hadoop.hbase.TableName;
import org.apache.hadoop.hbase.client.*;
import org.apache.hadoop.hbase.util.Bytes;/*** Created by szh on 2020/4/24.* @author szh*/
public class Hbase_Counter {public static void main(String[] args) throws Exception {Configuration conf = HBaseConfiguration.create();conf.set("hbase.zookeeper.quorum", "cdh-manager,cdh-node1,cdh-node2");conf.set("hbase.zookeeper.property.clientPort", "2181");Connection conn = ConnectionFactory.createConnection(conf);TableName tableName = TableName.valueOf("hits");Table table = conn.getTable(tableName);//设置客户端缓存大小long value = table.incrementColumnValue(Bytes.toBytes("20200423"),Bytes.toBytes("uv"),Bytes.toBytes("1"),4);System.out.println(value);long value2 = table.incrementColumnValue(Bytes.toBytes("20200423"),Bytes.toBytes("uv"),Bytes.toBytes("2"),0);System.out.println(value2);Increment multiIncrement = new Increment(Bytes.toBytes("20200224"));multiIncrement.addColumn(Bytes.toBytes("pv"),Bytes.toBytes("1"),-1);multiIncrement.addColumn(Bytes.toBytes("uv"),Bytes.toBytes("1"),1);multiIncrement.addColumn(Bytes.toBytes("pv"),Bytes.toBytes("2"),1);multiIncrement.addColumn(Bytes.toBytes("uv"),Bytes.toBytes("2"),4);Result result = table.increment(multiIncrement);for(Cell cell : result.rawCells()){System.out.println(cell);}table.close();}
}

 

 

 

 

 

 

这篇关于HBase_HBase2.0 Java API 操作指南 (五) 计数器的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/955972

相关文章

Ubuntu 24.04启用root图形登录的操作流程

《Ubuntu24.04启用root图形登录的操作流程》Ubuntu默认禁用root账户的图形与SSH登录,这是为了安全,但在某些场景你可能需要直接用root登录GNOME桌面,本文以Ubuntu2... 目录一、前言二、准备工作三、设置 root 密码四、启用图形界面 root 登录1. 修改 GDM 配

Spring Boot中的路径变量示例详解

《SpringBoot中的路径变量示例详解》SpringBoot中PathVariable通过@PathVariable注解实现URL参数与方法参数绑定,支持多参数接收、类型转换、可选参数、默认值及... 目录一. 基本用法与参数映射1.路径定义2.参数绑定&nhttp://www.chinasem.cnbs

JAVA中安装多个JDK的方法

《JAVA中安装多个JDK的方法》文章介绍了在Windows系统上安装多个JDK版本的方法,包括下载、安装路径修改、环境变量配置(JAVA_HOME和Path),并说明如何通过调整JAVA_HOME在... 首先去oracle官网下载好两个版本不同的jdk(需要登录Oracle账号,没有可以免费注册)下载完

Spring StateMachine实现状态机使用示例详解

《SpringStateMachine实现状态机使用示例详解》本文介绍SpringStateMachine实现状态机的步骤,包括依赖导入、枚举定义、状态转移规则配置、上下文管理及服务调用示例,重点解... 目录什么是状态机使用示例什么是状态机状态机是计算机科学中的​​核心建模工具​​,用于描述对象在其生命

Spring Boot 结合 WxJava 实现文章上传微信公众号草稿箱与群发

《SpringBoot结合WxJava实现文章上传微信公众号草稿箱与群发》本文将详细介绍如何使用SpringBoot框架结合WxJava开发工具包,实现文章上传到微信公众号草稿箱以及群发功能,... 目录一、项目环境准备1.1 开发环境1.2 微信公众号准备二、Spring Boot 项目搭建2.1 创建

Java中Integer128陷阱

《Java中Integer128陷阱》本文主要介绍了Java中Integer与int的区别及装箱拆箱机制,重点指出-128至127范围内的Integer值会复用缓存对象,导致==比较结果为true,下... 目录一、Integer和int的联系1.1 Integer和int的区别1.2 Integer和in

SpringSecurity整合redission序列化问题小结(最新整理)

《SpringSecurity整合redission序列化问题小结(最新整理)》文章详解SpringSecurity整合Redisson时的序列化问题,指出需排除官方Jackson依赖,通过自定义反序... 目录1. 前言2. Redission配置2.1 RedissonProperties2.2 Red

IntelliJ IDEA2025创建SpringBoot项目的实现步骤

《IntelliJIDEA2025创建SpringBoot项目的实现步骤》本文主要介绍了IntelliJIDEA2025创建SpringBoot项目的实现步骤,文中通过示例代码介绍的非常详细,对大家... 目录一、创建 Spring Boot 项目1. 新建项目2. 基础配置3. 选择依赖4. 生成项目5.

JSONArray在Java中的应用操作实例

《JSONArray在Java中的应用操作实例》JSONArray是org.json库用于处理JSON数组的类,可将Java对象(Map/List)转换为JSON格式,提供增删改查等操作,适用于前后端... 目录1. jsONArray定义与功能1.1 JSONArray概念阐释1.1.1 什么是JSONA

Java JDK1.8 安装和环境配置教程详解

《JavaJDK1.8安装和环境配置教程详解》文章简要介绍了JDK1.8的安装流程,包括官网下载对应系统版本、安装时选择非系统盘路径、配置JAVA_HOME、CLASSPATH和Path环境变量,... 目录1.下载JDK2.安装JDK3.配置环境变量4.检验JDK官网下载地址:Java Downloads