Created
January 10, 2023 12:45
-
-
Save namtx/620a19c3b76f6273ee6cf38feab24cb5 to your computer and use it in GitHub Desktop.
ZooKeeper + Kafka + MySQL + Debezium Connector local setup with docker-compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
zookeeper: | |
image: confluentinc/cp-zookeeper:latest | |
environment: | |
ZOOKEEPER_CLIENT_PORT: 2181 | |
ZOOKEEPER_TICK_TIME: 2000 | |
ports: | |
- 22181:2181 | |
kafka-1: | |
image: confluentinc/cp-kafka:latest | |
depends_on: | |
- zookeeper | |
ports: | |
- 29092:29092 | |
environment: | |
KAFKA_BROKER_ID: 1 | |
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 | |
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka-1:9092,PLAINTEXT_HOST://localhost:29092 | |
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT | |
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT | |
# KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 | |
KAFKA_DEFAULT_REPLICATION_FACTOR: 3 | |
KAFKA_NUM_PARTITIONS: 3 | |
kafka-2: | |
image: confluentinc/cp-kafka:latest | |
depends_on: | |
- zookeeper | |
ports: | |
- 29093:29093 | |
environment: | |
KAFKA_BROKER_ID: 2 | |
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 | |
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka-2:9093,PLAINTEXT_HOST://localhost:29093 | |
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT | |
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT | |
# KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 | |
KAFKA_DEFAULT_REPLICATION_FACTOR: 3 | |
KAFKA_NUM_PARTITIONS: 3 | |
kafka-3: | |
image: confluentinc/cp-kafka:latest | |
depends_on: | |
- zookeeper | |
ports: | |
- 29094:29094 | |
environment: | |
KAFKA_BROKER_ID: 3 | |
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 | |
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka-3:9094,PLAINTEXT_HOST://localhost:29094 | |
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT | |
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT | |
# KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1 | |
KAFKA_DEFAULT_REPLICATION_FACTOR: 3 | |
KAFKA_NUM_PARTITIONS: 3 | |
mysql: | |
image: quay.io/debezium/example-mysql:2.1 | |
ports: | |
- 33306:3306 | |
environment: | |
MYSQL_ROOT_PASSWORD: debezium | |
MYSQL_USER: mysqluser | |
MYSQL_PASSWORD: mysqlpw | |
connect: | |
image: quay.io/debezium/connect:2.1 | |
ports: | |
- 8083:8083 | |
depends_on: | |
- kafka-1 | |
- kafka-2 | |
- kafka-3 | |
environment: | |
GROUP_ID: 1 | |
CONFIG_STORAGE_TOPIC: my_connect_configs | |
OFFSET_STORAGE_TOPIC: my_connect_offsets | |
STATUS_STORAGE_TOPIC: my_connect_statuses | |
BOOTSTRAP_SERVERS: 'kafka-1:9092,kafka-2:9093,kafka-3:9094' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "inventory-connector", | |
"config": { | |
"connector.class": "io.debezium.connector.mysql.MySqlConnector", | |
"tasks.max": "1", | |
"database.hostname": "mysql", | |
"database.port": "3306", | |
"database.user": "root", | |
"database.password": "debezium", | |
"database.server.id": "184054", | |
"topic.prefix": "dbserver1", | |
"database.include.list": "inventory", | |
"schema.history.internal.kafka.bootstrap.servers": "kafka-1:9092,kafka-2:9093,kafka-3:9094", | |
"schema.history.internal.kafka.topic": "schema-changes.inventory" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment