forked from openweb-nl/open-bank-mark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-cluster.yml
147 lines (138 loc) · 3.9 KB
/
docker-cluster.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
---
version: '2.2'
services:
db:
image: postgres:11-alpine
container_name: db
ports:
- "25432:25432"
environment:
POSTGRES_PASSWORD: aAbB24CcO03XxZuUiiiX2
command: -p 25432
restart: always
zookeeper-1:
image: confluentinc/cp-zookeeper:5.2.1
container_name: zk1
ports:
- "22181:2181"
- "22888:2888"
- "23888:3888"
environment:
ZOOKEEPER_SERVER_ID: 1
ZOOKEEPER_CLIENT_PORT: 22181
ZOOKEEPER_TICK_TIME: 2000
ZOOKEEPER_INIT_LIMIT: 5
ZOOKEEPER_SYNC_LIMIT: 2
ZOOKEEPER_SERVERS: zookeeper-1:22888:23888;zookeeper-2:32888:33888;zookeeper-3:42888:43888
ZOOKEEPER_MAX_CLIENT_CNXNS: 30
mem_limit: 200m
restart: always
zookeeper-2:
image: confluentinc/cp-zookeeper:5.2.1
container_name: zk2
ports:
- "32181:2181"
- "32888:2888"
- "33888:3888"
environment:
ZOOKEEPER_SERVER_ID: 2
ZOOKEEPER_CLIENT_PORT: 32181
ZOOKEEPER_TICK_TIME: 2000
ZOOKEEPER_INIT_LIMIT: 5
ZOOKEEPER_SYNC_LIMIT: 2
ZOOKEEPER_SERVERS: zookeeper-1:22888:23888;zookeeper-2:32888:33888;zookeeper-3:42888:43888
ZOOKEEPER_MAX_CLIENT_CNXNS: 30
mem_limit: 200m
restart: always
zookeeper-3:
image: confluentinc/cp-zookeeper:5.2.1
container_name: zk3
ports:
- "42181:2181"
- "42888:2888"
- "43888:3888"
environment:
ZOOKEEPER_SERVER_ID: 3
ZOOKEEPER_CLIENT_PORT: 42181
ZOOKEEPER_TICK_TIME: 2000
ZOOKEEPER_INIT_LIMIT: 5
ZOOKEEPER_SYNC_LIMIT: 2
ZOOKEEPER_SERVERS: zookeeper-1:22888:23888;zookeeper-2:32888:33888;zookeeper-3:42888:43888
ZOOKEEPER_MAX_CLIENT_CNXNS: 30
mem_limit: 200m
restart: always
kafka-1:
image: confluentinc/cp-kafka:5.2.1
container_name: kafka-1
ports:
- "19092:9092"
depends_on:
- zookeeper-1
- zookeeper-2
- zookeeper-3
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: zookeeper-1:22181,zookeeper-2:32181,zookeeper-3:42181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka-1:19092
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false"
KAFKA_DELETE_TOPIC_ENABLE: "true"
KAFKA_MIN_INSYNC_REPLICAS: 2
CONFLUENT_SUPPORT_METRICS_ENABLE: 0
mem_limit: 1300m
restart: always
kafka-2:
image: confluentinc/cp-kafka:5.2.1
container_name: kafka-2
ports:
- "29092:9092"
depends_on:
- zookeeper-1
- zookeeper-2
- zookeeper-3
environment:
KAFKA_BROKER_ID: 2
KAFKA_ZOOKEEPER_CONNECT: zookeeper-1:22181,zookeeper-2:32181,zookeeper-3:42181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka-2:29092
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false"
KAFKA_DELETE_TOPIC_ENABLE: "true"
KAFKA_MIN_INSYNC_REPLICAS: 2
CONFLUENT_SUPPORT_METRICS_ENABLE: 0
mem_limit: 1300m
restart: always
kafka-3:
image: confluentinc/cp-kafka:5.2.1
container_name: kafka-3
ports:
- "39092:9092"
depends_on:
- zookeeper-1
- zookeeper-2
- zookeeper-3
environment:
KAFKA_BROKER_ID: 3
KAFKA_ZOOKEEPER_CONNECT: zookeeper-1:22181,zookeeper-2:32181,zookeeper-3:42181
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka-3:39092
KAFKA_AUTO_CREATE_TOPICS_ENABLE: "false"
KAFKA_DELETE_TOPIC_ENABLE: "true"
KAFKA_MIN_INSYNC_REPLICAS: 2
CONFLUENT_SUPPORT_METRICS_ENABLE: 0
mem_limit: 1300m
restart: always
schema-registry:
image: confluentinc/cp-schema-registry:5.2.1
container_name: sr
ports:
- "18081:8081"
depends_on:
- zookeeper-1
- zookeeper-2
- zookeeper-3
- kafka-1
- kafka-2
- kafka-3
environment:
SCHEMA_REGISTRY_LISTENERS: http://schema-registry:18081
SCHEMA_REGISTRY_HOST_NAME: schema-registry
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: zookeeper-1:22181,zookeeper-2:32181,zookeeper-3:42181
mem_limit: 400m
restart: always