flink-cdc同步mysql数据到hbase

本文首发于我的个人博客网站: https://www.ikeguang.com

什么是CDC?

CDC是(Change Data Capture 变更数据获取)的简称。核心思想是,监测并捕获数据库的变动(包括数据 或 数据表的插入INSERT、更新UPDATE、删除DELETE等),将这些变更按发生的顺序完整记录下来,写入到消息中间件中以供其他服务进行订阅及消费。

[图片上传失败...(image-d3e721-1664517247727)]

1. 环境准备

  • mysql

  • hbase

  • flink 1.13.5 on yarn

说明:如果没有安装hadoop,那么可以不用yarn,直接用flink standalone环境吧。

2. 下载下列依赖包

下面两个地址下载flink的依赖包,放在lib目录下面。

  1. flink-sql-connector-hbase-1.4_2.11-1.13.5.jar
  2. flink-sql-connector-mysql-cdc-1.4.0.jar

如果你的Flink是其它版本,可以来这里下载。

我是flink1.13,这里flink-sql-connector-mysql-cdc,需要1.4.0以上版本。

[图片上传失败...(image-f7e248-1664517247727)]

如果你是更高版本的flink,可以自行https://github.com/ververica/flink-cdc-connectors下载新版mvn clean install -DskipTests 自己编译。

[图片上传失败...(image-f48f65-1664517247727)]

这是我编译的最新版2.2,传上去发现太新了,如果重新换个版本,我得去gitee下载源码,不然github速度太慢了,然后用IDEA编译打包,又得下载一堆依赖。我投降,我直接去网上下载了个1.4的直接用了。

我下载的jar包,放在flink的lib目录下面:

[图片上传失败...(image-211942-1664517247727)]

flink-sql-connector-hbase-1.4_2.11-1.13.5.jar
flink-sql-connector-mysql-cdc-1.4.0.jar

3. 启动flink-sql client

  1. 先在yarn上面启动一个application,进入flink13.5目录,执行:
bin/yarn-session.sh -d -s 2 -jm 1024 -tm 2048 -qu root.sparkstreaming -nm flink-cdc-hbase
  1. 进入flink sql命令行
bin/sql-client.sh embedded -s flink-cdc-hbase

[图片上传失败...(image-b0749c-1664517247727)]

4. 同步数据

这里有一张mysql表:

CREATE TABLE `product_view` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`server_id` int(11) NOT NULL,
`duration` int(11) NOT NULL,
`times` varchar(11) NOT NULL,
`time` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `time` (`time`),
KEY `user_product` (`user_id`,`product_id`) USING BTREE,
KEY `times` (`times`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- 样本数据
INSERT INTO `product_view` VALUES ('1', '1', '1', '1', '120', '120', '2020-04-24 13:14:00');
INSERT INTO `product_view` VALUES ('2', '1', '1', '1', '120', '120', '2020-04-24 13:14:00');
INSERT INTO `product_view` VALUES ('3', '1', '1', '3', '120', '120', '2020-04-24 13:14:00');
INSERT INTO `product_view` VALUES ('4', '1', '1', '2', '120', '120', '2020-04-24 13:14:00');
INSERT INTO `product_view` VALUES ('5', '8', '1', '1', '120', '120', '2020-05-14 13:14:00');
INSERT INTO `product_view` VALUES ('6', '8', '1', '2', '120', '120', '2020-05-13 13:14:00');
INSERT INTO `product_view` VALUES ('7', '8', '1', '3', '120', '120', '2020-04-24 13:14:00');
INSERT INTO `product_view` VALUES ('8', '8', '1', '3', '120', '120', '2020-04-23 13:14:00');
INSERT INTO `product_view` VALUES ('9', '8', '1', '2', '120', '120', '2020-05-13 13:14:00');
  1. 创建数据表关联mysql
CREATE TABLE product_view_source (
`id` int,
`user_id` int,
`product_id` int,
`server_id` int,
`duration` int,
`times` string,
`time` timestamp,
PRIMARY KEY (`id`) NOT ENFORCED
) WITH (
'connector' = 'mysql-cdc',
'hostname' = '192.168.1.2',
'port' = '3306',
'username' = 'bigdata',
'password' = 'bigdata',
'database-name' = 'test',
'table-name' = 'product_view'
);

这样,我们在flink sql client操作这个表相当于操作mysql里面的对应表。

  1. 创建数据表关联hbase
CREATE TABLE product_view_hbase (
 rowkey INT,
 family1 ROW<user_id INT, product_id INT, server_id INT, duration INT>,
 PRIMARY KEY (rowkey) NOT ENFORCED
) WITH (
 'connector' = 'hbase-1.4',
 'table-name' = 'product_view',
 'zookeeper.quorum' = 'cdh-001:2181'
);

这里,需要提前在hbase里面创建好product_view这个主题。

  1. 同步数据

[图片上传失败...(image-4a5d7f-1664517247727)]

建立同步任务,可以使用sql如下:

insert into product_view_hbase select id as rowkey, ROW(user_id, product_id, server_id, duration) from product_view_source;

这个时候是可以退出flink sql-client的,然后进入flink web-ui,可以看到mysql表数据已经同步到hbase中了,对mysql进行插入,hbase都是同步更新的。

进入hbase shell,可以看到数据已经从mysql同步到hbase了:

hbase(main):009:0> scan 'product_view'
ROW                                    COLUMN+CELL                                                                                                   
 \x00\x00\x00\x01                      column=family1:duration, timestamp=1663223736391, value=\x00\x00\x00x                                         
 \x00\x00\x00\x01                      column=family1:product_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                    
 \x00\x00\x00\x01                      column=family1:server_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                     
 \x00\x00\x00\x01                      column=family1:user_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                       
 \x00\x00\x00\x02                      column=family1:duration, timestamp=1663223736391, value=\x00\x00\x00x                                         
 \x00\x00\x00\x02                      column=family1:product_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                    
 \x00\x00\x00\x02                      column=family1:server_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                     
 \x00\x00\x00\x02                      column=family1:user_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                       
 \x00\x00\x00\x03                      column=family1:duration, timestamp=1663223736391, value=\x00\x00\x00x                                         
 \x00\x00\x00\x03                      column=family1:product_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                    
 \x00\x00\x00\x03                      column=family1:server_id, timestamp=1663223736391, value=\x00\x00\x00\x03                                     
 \x00\x00\x00\x03                      column=family1:user_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                       
 \x00\x00\x00\x04                      column=family1:duration, timestamp=1663223736391, value=\x00\x00\x00x                                         
 \x00\x00\x00\x04                      column=family1:product_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                    
 \x00\x00\x00\x04                      column=family1:server_id, timestamp=1663223736391, value=\x00\x00\x00\x02                                     
 \x00\x00\x00\x04                      column=family1:user_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                       
 \x00\x00\x00\x05                      column=family1:duration, timestamp=1663223736391, value=\x00\x00\x00x                                         
 \x00\x00\x00\x05                      column=family1:product_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                    
 \x00\x00\x00\x05                      column=family1:server_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                     
 \x00\x00\x00\x05                      column=family1:user_id, timestamp=1663223736391, value=\x00\x00\x00\x08                                       
 \x00\x00\x00\x06                      column=family1:duration, timestamp=1663223736391, value=\x00\x00\x00x                                         
 \x00\x00\x00\x06                      column=family1:product_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                    
 \x00\x00\x00\x06                      column=family1:server_id, timestamp=1663223736391, value=\x00\x00\x00\x02                                     
 \x00\x00\x00\x06                      column=family1:user_id, timestamp=1663223736391, value=\x00\x00\x00\x08                                       
 \x00\x00\x00\x07                      column=family1:duration, timestamp=1663223736391, value=\x00\x00\x00x                                         
 \x00\x00\x00\x07                      column=family1:product_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                    
 \x00\x00\x00\x07                      column=family1:server_id, timestamp=1663223736391, value=\x00\x00\x00\x03                                     
 \x00\x00\x00\x07                      column=family1:user_id, timestamp=1663223736391, value=\x00\x00\x00\x08                                       
 \x00\x00\x00\x09                      column=family1:duration, timestamp=1663223736391, value=\x00\x00\x00x                                         
 \x00\x00\x00\x09                      column=family1:product_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                    
 \x00\x00\x00\x09                      column=family1:server_id, timestamp=1663223736391, value=\x00\x00\x00\x03                                     
 \x00\x00\x00\x09                      column=family1:user_id, timestamp=1663223736391, value=\x00\x00\x00\x08                                       
 \x00\x00\x00\x0A                      column=family1:duration, timestamp=1663223736391, value=\x00\x00\x00x                                         
 \x00\x00\x00\x0A                      column=family1:product_id, timestamp=1663223736391, value=\x00\x00\x00\x01                                    
 \x00\x00\x00\x0A                      column=family1:server_id, timestamp=1663223736391, value=\x00\x00\x00\x02                                     
 \x00\x00\x00\x0A                      column=family1:user_id, timestamp=1663223736391, value=\x00\x00\x00\x08                                       
9 row(s)
Took 0.1656 seconds                                                                              

直接在flink-sql client里面查询hbase数据,也是可以的:

Flink SQL> select * from product_view_hbase ;
2022-09-15 15:38:23,205 INFO  org.apache.flink.yarn.YarnClusterDescriptor                  [] - No path for the flink jar passed. Using the location of class org.apache.flink.yarn.YarnClusterDescriptor to locate the jar
2022-09-15 15:38:23,207 INFO  org.apache.hadoop.yarn.client.ConfiguredRMFailoverProxyProvider [] - Failing over to rm72
2022-09-15 15:38:23,212 INFO  org.apache.flink.yarn.YarnClusterDescriptor                  [] - Found Web Interface cdh-001:35225 of application 'application_1633924491541_7321'.

执行上面查询sql,就会进入界面,这就是hbase里面的数据了:

[图片上传失败...(image-645257-1664517247727)]

5. 关联查询

在这个flink-sql client环境中,这里有两张表:product_view_source(mysql的表)和product_view_hbase(hbase的表),后者是有前者查询导入的,这里为了简单,我没有再关联其它第三张表,就用这两张表,做关联查询,达到演示的目的。

select product_view_source.*, product_view_hbase.*  from product_view_source
inner join product_view_hbase
on product_view_source.id = product_view_hbase.rowkey;

这里做了个简单的关联查询,通过id跟rowkey关联,然后打开web-ui,通过flink web-ui结果可以看出,这里是个hash join,两个source,到join,一共3个task。

[图片上传失败...(image-64c23-1664517247727)]

看看查出来的结果吧,这是flnk-sql client:

[图片上传失败...(image-7b737e-1664517247727)]

比如我选中这一行,进来后是这条数据的详细情况,是没有问题的:

[图片上传失败...(image-4e85a8-1664517247727)]

参考资料

https://nightlies.apache.org/flink/flink-docs-release-1.13/zh/docs/connectors/table/hbase/

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,214评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,307评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,543评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,221评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,224评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,007评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,313评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,956评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,441评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,925评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,018评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,685评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,234评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,240评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,464评论 1 261
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,467评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,762评论 2 345

推荐阅读更多精彩内容