-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
195 lines (185 loc) · 7.8 KB
/
Copy pathdocker-compose.yml
File metadata and controls
195 lines (185 loc) · 7.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
---
services:
zookeeper:
image: confluentinc/cp-zookeeper:7.0.1
container_name: zookeeper
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
broker:
image: confluentinc/cp-kafka:7.0.1
container_name: kafka
depends_on:
- zookeeper
ports:
# "`-._,-'"`-._,-'"`-._,-'"`-._,-'"`-._,-'"`-._,-'"`-._,-'"`-._,-'"`-._,-
# An important note about accessing Kafka from clients on other machines:
# -----------------------------------------------------------------------
#
# The config used here exposes port 9092 for _external_ connections to the broker
# i.e. those from _outside_ the docker network. This could be from the host machine
# running docker, or maybe further afield if you've got a more complicated setup.
# If the latter is true, you will need to change the value 'localhost' in
# KAFKA_ADVERTISED_LISTENERS to one that is resolvable to the docker host from those
# remote clients
#
# For connections _internal_ to the docker network, such as from other services
# and components, use broker:29092.
#
# See https://rmoff.net/2018/08/02/kafka-listeners-explained/ for details
# "`-._,-'"`-._,-'"`-._,-'"`-._,-'"`-._,-'"`-._,-'"`-._,-'"`-._,-'"`-._,-
#
- 9092:9092
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://broker:29092,PLAINTEXT_HOST://broker:9092
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "true" # auto create a topic when producing a message to a non-existent topic.
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 100
KAFKA_MESSAGE_MAX_BYTES: 200000000 # Increase max message size to 200MB
KAFKA_REPLICA_FETCH_MAX_BYTES: 200000000 # Increase replica fetch max size to 200MB
KAFKA_MAX_REQUEST_SIZE: 200000000 # Increase max request size to 200MB
KAFKA_SOCKET_REQUEST_MAX_BYTES: 200000000 # Increase socket request max size to 200MB
KAFKA_FETCH_MAX_BYTES: 200000000 # Increase fetch max size to 200MB
schema-registry:
image: confluentinc/cp-schema-registry:7.0.1
container_name: schema-registry
ports:
- "8081:8081"
depends_on:
- broker
environment:
SCHEMA_REGISTRY_HOST_NAME: schema-registry
SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: 'broker:29092'
kafka-connect:
image: confluentinc/cp-kafka-connect-base:7.0.1
container_name: kafka-connect
depends_on:
- broker
- schema-registry
ports:
- 8083:8083
environment:
CONNECT_BOOTSTRAP_SERVERS: "broker:29092"
CONNECT_REST_PORT: 8083
CONNECT_GROUP_ID: kafka-connect
CONNECT_CONFIG_STORAGE_TOPIC: _connect-configs
CONNECT_OFFSET_STORAGE_TOPIC: _connect-offsets
CONNECT_STATUS_STORAGE_TOPIC: _connect-status
CONNECT_KEY_CONVERTER: org.apache.kafka.connect.storage.StringConverter
CONNECT_VALUE_CONVERTER: io.confluent.connect.avro.AvroConverter
CONNECT_VALUE_CONVERTER_SCHEMA_REGISTRY_URL: 'http://schema-registry:8081'
CONNECT_INTERNAL_KEY_CONVERTER: "org.apache.kafka.connect.json.JsonConverter"
CONNECT_INTERNAL_VALUE_CONVERTER: "org.apache.kafka.connect.json.JsonConverter"
CONNECT_REST_ADVERTISED_HOST_NAME: "kafka-connect"
CONNECT_LOG4J_ROOT_LOGLEVEL: "INFO"
CONNECT_LOG4J_LOGGERS: "org.apache.kafka.connect.runtime.rest=WARN,org.reflections=ERROR"
CONNECT_LOG4J_APPENDER_STDOUT_LAYOUT_CONVERSIONPATTERN: "[%d] %p %X{connector.context}%m (%c:%L)%n"
CONNECT_CONFIG_STORAGE_REPLICATION_FACTOR: "1"
CONNECT_OFFSET_STORAGE_REPLICATION_FACTOR: "1"
CONNECT_STATUS_STORAGE_REPLICATION_FACTOR: "1"
# You can either specify your AWS credentials here, or create a .env file
# in which the environment variables are set. The latter is preferable since you can isolate
# your credentials from this Docker Compose file.
# AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID} # --> use this if you want to connect to s3
# AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY} # --> use this if you want to connect to s3
# ---------------
CONNECT_PLUGIN_PATH: /usr/share/java,/usr/share/confluent-hub-components,/data/connect-jars
# If you want to use the Confluent Hub installer to d/l component, but make them available
# when running this offline, spin up the stack once and then run :
# docker cp kafka-connect:/usr/share/confluent-hub-components ./data/connect-jars
# volumes:
# - $PWD/data:/data
# In the command section, $ are replaced with $$ to avoid the error 'Invalid interpolation format for "command" option'
command:
- bash
- -c
- |
echo "Installing Connector"
confluent-hub install --no-prompt confluentinc/kafka-connect-http-source:0.2.0
confluent-hub install --no-prompt confluentinc/kafka-connect-jdbc:10.7.6
#
echo "Launching Kafka Connect worker"
/etc/confluent/docker/run &
#
echo -e "\n\n=============\nWaiting for Kafka Connect to start listening on localhost ⏳\n=============\n"
while : ; do
curl_status=$$(curl -s -o /dev/null -w %{http_code} http://localhost:8083/connectors)
echo -e $$(date) " Kafka Connect listener HTTP state: " $$curl_status " (waiting for 200)"
if [ $$curl_status -eq 200 ] ; then
break
fi
sleep 5
done
echo -e $(date) "\n\n--------------\n\o/ Kafka Connect is ready! Listener HTTP state: " $(curl -s -o /dev/null -w %{http_code} http://localhost:8083/connectors) "\n--------------\n"
sleep infinity
# ksqldb:
# image: confluentinc/ksqldb-server:0.14.0
# container_name: ksqldb
# depends_on:
# - broker
# ports:
# - "8088:8088"
# environment:
# KSQL_LISTENERS: http://0.0.0.0:8088
# KSQL_BOOTSTRAP_SERVERS: broker:29092
# KSQL_KSQL_LOGGING_PROCESSING_STREAM_AUTO_CREATE: "true"
# KSQL_KSQL_LOGGING_PROCESSING_TOPIC_AUTO_CREATE: "true"
# KSQL_KSQL_CONNECT_URL: http://kafka-connect:8083
# KSQL_KSQL_SCHEMA_REGISTRY_URL: http://schema-registry:8081
# KSQL_KSQL_SERVICE_ID: confluent_rmoff_01
# KSQL_KSQL_HIDDEN_TOPICS: '^_.*'
# Other systems
mysql:
# *-----------------------------*
# To connect to the DB:
# docker exec -it mysql bash -c 'mysql -u root -p$MYSQL_ROOT_PASSWORD demo'
# *-----------------------------*
# image: mysql:8.0
image: mysql:9.0.0
container_name: mysql
ports:
- 3306:3306
environment:
- MYSQL_ROOT_PASSWORD=Admin123
- MYSQL_USER=mysqluser ## use this to access phpmyadmin
- MYSQL_PASSWORD=mysqlpw ## use this to acces phpmyadmin
volumes:
- ${PWD}/mysql/00_setup_db.sql:/docker-entrypoint-initdb.d/00_setup_db.sql
- ${PWD}/mysql/init-db.sh:/docker-entrypoint-initdb.d/init-db.sh
# - ${PWD}/data:/data ## use this if persit database on host machine is needed
entrypoint: ["/docker-entrypoint-initdb.d/init-db.sh"]
networks:
- mysql-phpmyadmin
phpmyadmin:
image: phpmyadmin:5.2.1-apache
container_name: phpmyadmin
links:
- mysql
environment:
PMA_HOST: mysql
PMA_PORT: 3306
restart: always
ports:
- 8080:80 ## Acess it on http://localhost:8080
networks:
- mysql-phpmyadmin
kafkacat:
image: edenhill/kcat:1.7.1
container_name: kafkacat
links:
- broker
- schema-registry
entrypoint:
- /bin/sh
- -c
- |
apk add jq;
while [ 1 -eq 1 ];do sleep 60;done
networks:
mysql-phpmyadmin: