-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-infra.yml
195 lines (184 loc) · 5.11 KB
/
docker-compose-infra.yml
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
## DESCRIPTION
#
# A Docker Compose to spin up a Kafka Development Cluster.
# This is NOT what you should use in production.
# The docker images used here are provided by Confluent Platform,
# and listed here: https://hub.docker.com/u/confluentinc/.
version: '3.8'
services:
# grafana:
# image: ${GRAFANA_IMG}:${GRAFANA_VER}
# ports:
# - "3000:3000"
# environment:
# GF_PATHS_DATA: /var/lib/grafana
# GF_SECURITY_ADMIN_PASSWORD: kafka
# volumes:
# - ./grafana/provisioning:/etc/grafana/provisioning
# - ./grafana/dashboards:/var/lib/grafana/dashboards
# container_name: grafana
# depends_on:
# - prometheus
prometheus:
container_name: prometheus
image: ${PROMETHEUS_IMG}:${PROMETHEUS_VER}
deploy:
resources:
limits:
cpus: '0.5'
memory: 512M
ports:
- '9090:9090'
volumes:
- ./etc/prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
zookeeper:
container_name: zookeeper
image: ${CP_ZOOKEEPER_IMG}:${CP_ZOOKEEPER_VER}
deploy:
resources:
limits:
cpus: '0.3'
memory: 128M
ports:
- '2181:2181'
- '2888:2888'
- '3888:3888'
healthcheck:
test: echo stat | nc localhost 2181
interval: 10s
timeout: 10s
retries: 3
environment:
- ZOOKEEPER_SERVER_ID=1
- ZOOKEEPER_CLIENT_PORT=2181
- ZOOKEEPER_TICK_TIME=2000
- ZOOKEEPER_INIT_LIMIT=5
- ZOOKEEPER_SYNC_LIMIT=2
- ZOOKEEPER_SERVERS=zookeeper:2888:3888
kafka-01-jmx:
container_name: kafka-01-jmx
image: ${JMX_EXPORTER_IMG}:${JMX_EXPORTER_VER}
deploy:
resources:
limits:
cpus: '0.3'
memory: 128M
depends_on:
- kafka-01
ports:
- "5551:5556"
volumes:
- './etc/jmx_exporter/kafka-01-jmx.yml:/etc/jmx_exporter/config.yml'
command:
- "5556"
- "/etc/jmx_exporter/config.yml"
kafka-01:
container_name: kafka-01
image: ${CP_KAFKA_IMG}:${CP_KAFKA_VER}
deploy:
resources:
limits:
cpus: '0.6'
memory: 512M
depends_on:
- zookeeper
ports:
- '9091:9091'
- '9991:9991'
- '19091:19091'
environment:
- KAFKA_BROKER_ID=1
- KAFKA_JMX_PORT=9991
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://kafka-01:9091,PLAINTEXT_HOST://localhost:19091
- KAFKA_LISTENERS=PLAINTEXT://0.0.0.0:9091,PLAINTEXT_HOST://0.0.0.0:19091
- KAFKA_LISTENER_SECURITY_PROTOCOL_MAP=PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
- KAFKA_INTER_BROKER_LISTENER_NAME=PLAINTEXT
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
- ZOOKEEPER=zookeeper:2181
- KAFKA_HEAP_OPTS=${CP_KAFKA_HEAP_OPTS}
kafka-02-jmx:
container_name: kafka-02-jmx
image: ${JMX_EXPORTER_IMG}:${JMX_EXPORTER_VER}
deploy:
resources:
limits:
cpus: '0.3'
memory: 128M
depends_on:
- kafka-02
ports:
- "5552:5556"
volumes:
- './etc/jmx_exporter/kafka-02-jmx.yml:/etc/jmx_exporter/config.yml'
command:
- "5556"
- "/etc/jmx_exporter/config.yml"
kafka-02:
container_name: kafka-02
image: ${CP_KAFKA_IMG}:${CP_KAFKA_VER}
deploy:
resources:
limits:
cpus: '0.6'
memory: 512M
depends_on:
- zookeeper
ports:
- '9092:9092'
- '9992:9992'
- '19092:19092'
environment:
- KAFKA_BROKER_ID=2
- KAFKA_JMX_PORT=9992
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://kafka-02:9092,PLAINTEXT_HOST://localhost:19092
- KAFKA_LISTENERS=PLAINTEXT://0.0.0.0:9092,PLAINTEXT_HOST://0.0.0.0:19092
- KAFKA_LISTENER_SECURITY_PROTOCOL_MAP=PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
- KAFKA_INTER_BROKER_LISTENER_NAME=PLAINTEXT
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
- ZOOKEEPER=zookeeper:2181
- KAFKA_HEAP_OPTS=${CP_KAFKA_HEAP_OPTS}
kafka-03-jmx:
container_name: kafka-03-jmx
image: ${JMX_EXPORTER_IMG}:${JMX_EXPORTER_VER}
deploy:
resources:
limits:
cpus: '0.3'
memory: 128M
depends_on:
- kafka-03
ports:
- "5553:5556"
volumes:
- './etc/jmx_exporter/kafka-03-jmx.yml:/etc/jmx_exporter/config.yml'
command:
- "5556"
- "/etc/jmx_exporter/config.yml"
kafka-03:
container_name: kafka-03
image: ${CP_KAFKA_IMG}:${CP_KAFKA_VER}
deploy:
resources:
limits:
cpus: '0.6'
memory: 512M
depends_on:
- zookeeper
ports:
- '9093:9093'
- '9993:9993'
- '19093:19093'
environment:
- KAFKA_BROKER_ID=3
- KAFKA_JMX_PORT=9993
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://kafka-03:9093,PLAINTEXT_HOST://localhost:19093
- KAFKA_LISTENERS=PLAINTEXT://0.0.0.0:9093,PLAINTEXT_HOST://0.0.0.0:19093
- KAFKA_LISTENER_SECURITY_PROTOCOL_MAP=PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
- KAFKA_INTER_BROKER_LISTENER_NAME=PLAINTEXT
- KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
- ZOOKEEPER=zookeeper:2181
- KAFKA_HEAP_OPTS=${CP_KAFKA_HEAP_OPTS}
networks:
default:
name: ${NETWORK_NAME}
driver: bridge