Former-commit-id: 373c4e917a1451f94ad3350fff033d2867dda4fa
Former-commit-id: 70d7514ed385fb5cec3dc8c8b8e748d997c48324
1.0
wanggang 4 years ago
parent a36acf2721
commit b3908edae0

Binary file not shown.

@ -7,7 +7,8 @@ default-character-set=utf8mb4
[mysqld]
character-set-server=utf8mb4
collation-server=utf8mb4_general_ci
log-bin=mysql-bin
binlog-format=ROW
binlog_expire_logs_seconds=604800
server_id=1
server_id=1
log_bin = mysql-bin
binlog_format = row
binlog_row_image = full
expire_logs_days = 10

@ -32,7 +32,7 @@ services:
# curl -i -X POST -H "Accept:application/json" -H "Content-Type:application/json" http://localhost:8083/connectors/ -d @register-mysql.json
# https://github.com/debezium/docker-images/blob/master/examples/mysql/1.5/inventory.sql
# https://github.com/debezium/debezium-examples/blob/master/tutorial/register-mysql.json
connect:
debezium:
image: debezium/connect:1.5
environment:
- BOOTSTRAP_SERVERS=192.168.100.144:9092
@ -44,4 +44,15 @@ services:
- 8083:8083
depends_on:
- mysql
- kafka
- kafka
debezium-ui:
image: debezium/debezium-ui
restart: always
environment:
- KAFKA_CONNECT_URI=http://debezium:8083
- ui.base.uri=http://localhost:8082/api
ports:
- 8082:8080
depends_on:
- kafka
- debezium
Loading…
Cancel
Save