Confluent local + debezium + mysql + schema Registry

参考

【1】快速搭建Confluent Kafka的本地测试环境:https://www.modb.pro/db/54580

【2】confluent local current:https://docs.confluent.io/confluent-cli/current/command-reference/local/confluent_local_current.html

【3】快速搭建Confluent Kafka的本地测试环境:https://www.modb.pro/db/54580

一、安装Confluent步骤

1,下载confluent platform

下载地址:Confluent Platform (需要输入邮箱)

2,安装Install Confluent CLI

如果在confluent-7.0.1/bin目录下没有confluent cli
需要安装,安装步骤:Install Confluent CLI

设置环境变量

export CONFLUENT_HOME=/Users/sun/Downloads/confluent-7.0.1/

3,confluent local命令

confluent local

./confluent local current

/var/folders/5w/33wydx3s1ys12smyf72762mr0000gq/T/confluent.917162
// 在root权限下执行的
./confluent local services start
./confluent local services status
./confluent local destroy

4,debezium-connector-mysql插件

share/java/debezium-connector-mysql

debezium-connector-mysql插件下载

5, 验证connectors

curl http://localhost:8083/connectors

6,启动本地mysql docker

因为my.cnf为readonly,无法开启binlog,所以改为本地安装mysql
注意,mysql需要开启binlog

1)brew install安装mysql&启动

brew uninstall mysql --force
rm -fr /usr/local/var/mysql/
brew services start mysql
brew services list
mysqladmin -uroot -p password 123456
mysql -uroot -p

[1] install MySQL 8 in MacOS
[2] MySQL configuration files
[3] Setting The Binary Log Format

2)是否开启了binlog

show variables like '%log_bin%'

show variables like '%binlog%%';

[1] docker mysql 开启binlog
[2] docker开启mysql启binlog日志
[3] 开启MySQL的binlog日志

7, 添加debezium mysql connector配置

[1] Debezium MySQL connector configuration properties

[2] Debezium介绍及动态调用Connector API接口实例

curl -i -X POST -H "Accept:application/json" -H "Content-Type:application/json" localhost:8083/connectors -d '
{
    "name": "test_avro_source",
    "config": {
        "connector.class": "io.debezium.connector.mysql.MySqlConnector",
        "database.user": "root",
        "database.server.id": "122222",
        "database.history.kafka.bootstrap.servers": "172.16.6.218:9092",
        "database.history.kafka.topic": "history_test_avro",
        "database.server.name": "test_avro",
        "database.port": "3306",
        "include.schema.changes": "true",
        "value.converter.schema.registry.url": "http://172.16.6.218:8081",
        "decimal.handling.mode": "string",
        "include.schema.comments": "true",
        "database.hostname": "localhost",
        "database.password": "123456",
        "name": "test_avro_source",
        "value.converter": "io.confluent.connect.avro.AvroConverter",
        "key.converter": "io.confluent.connect.avro.AvroConverter",
        "key.converter.schema.registry.url": "http://localhost:8081",
        "database.include.list": "workdb",
        "snapshot.mode": "schema_only"
    }
}
'

8,check connectors

curl http://localhost:8083/connectors
curl http://localhost:8083/connectors/test_avro_source
curl -i -X GET localhost:8083/connectors/test_avro_source/status
curl -i -X POST localhost:8083/connectors/test_avro_source/restart
curl -i -X GET localhost:8083/connectors/test_avro_source/tasks
curl -i -X GET localhost:8083/connectors/test_avro_source/tasks/0/status
curl -i -X POST localhost:8083/connectors/test_avro_source/tasks/0/restart
curl -i -X DELETE localhost:8083/connectors/test_avro_source

9,创建表+插入数据

CREATE TABLE `table_name_1` (
  `id` int NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci

INSERT INTO test_avro.table_name_1 (id, name) VALUES (1, '22111a');

10,验证是否有对应的topic&是否有数据

cd confluent-7.0.1/bin
// 验证是否有对应topic
kafka-topics --bootstrap-server localhost:9092 --list

// 验证topic中是否有数据,avro反序列化后的信息
kafka-avro-console-consumer --bootstrap-server localhost:9092 --topic test_avro.table_name_1 --from-beginning


====>
{
    "before":{
        "test_avro.table_name_1.Value":{
            "id":1,
            "name":{
                "string":"22111"
            }
        }
    },
    "after":{
        "test_avro.test_avro.table_name_1.Value":{
            "id":1,
            "name":{
                "string":"22111a"
            }
        }
    },
    "source":{
        "version":"1.5.0.Final",
        "connector":"mysql",
        "name":"test_avro",
        "ts_ms":1646621858000,
        "snapshot":{
            "string":"false"
        },
        "db":"test_avro",
        "sequence":null,
        "table":{
            "string":"table_name_1"
        },
        "server_id":1,
        "gtid":null,
        "file":"binlog.000044",
        "pos":4697,
        "row":0,
        "thread":null,
        "query":null
    },
    "op":"u",
    "ts_ms":{
        "long":1646621858881
    },
    "transaction":null
}

// 验证topic中是否有数据,avro序列化后的信息,没有经过发序列化处理
kafka-console-consumer --bootstrap-server localhost:9092 --topic test_avro

其他命令

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

推荐阅读更多精彩内容