-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
234 lines (224 loc) · 7.52 KB
/
docker-compose.yml
File metadata and controls
234 lines (224 loc) · 7.52 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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
# networks:
# pulsar:
# driver: bridge
services:
# Start zookeeper
zookeeper:
image: apachepulsar/pulsar:latest
container_name: zookeeper
restart: on-failure
# networks:
# - pulsar
volumes:
- ./data/zookeeper:/pulsar/data/zookeeper
environment:
- metadataStoreUrl=zk:zookeeper:2181
- PULSAR_MEM=-Xms256m -Xmx256m -XX:MaxDirectMemorySize=256m
- OTEL_EXPORTER_OTLP_ENDPOINT=http://jaegar:4317
- OTEL_METRIC_EXPORT_INTERVAL=1000
- OTEL_SDK_DISABLED=false
command:
- bash
- -c
- |
bin/apply-config-from-env.py conf/zookeeper.conf && \
bin/generate-zookeeper-config.sh conf/zookeeper.conf && \
exec bin/pulsar zookeeper
healthcheck:
test: ['CMD', 'bin/pulsar-zookeeper-ruok.sh']
interval: 10s
timeout: 5s
retries: 30
# Init cluster metadata
pulsar-init:
container_name: pulsar-init
hostname: pulsar-init
image: apachepulsar/pulsar:latest
# networks:
# - pulsar
command:
- bash
- -c
- |
bin/pulsar initialize-cluster-metadata \
--cluster cluster-a \
--zookeeper zookeeper:2181 \
--configuration-store zookeeper:2181 \
--web-service-url http://broker:8080 \
--broker-service-url pulsar://broker:6650
depends_on:
zookeeper:
condition: service_healthy
# Start bookie
bookie:
image: apachepulsar/pulsar:latest
container_name: bookie
restart: on-failure
# networks:
# - pulsar
environment:
- clusterName=cluster-a
- zkServers=zookeeper:2181
- metadataServiceUri=metadata-store:zk:zookeeper:2181
# otherwise every time we run docker compose up or down we fail to start due to Cookie
# See: https://github.com/apache/bookkeeper/blob/405e72acf42bb1104296447ea8840d805094c787/bookkeeper-server/src/main/java/org/apache/bookkeeper/bookie/Cookie.java#L57-68
- advertisedAddress=bookie
- BOOKIE_MEM=-Xms512m -Xmx512m -XX:MaxDirectMemorySize=256m
- OTEL_EXPORTER_OTLP_ENDPOINT=http://jaegar:4317
- OTEL_METRIC_EXPORT_INTERVAL=1000
- OTEL_SDK_DISABLED=false
depends_on:
zookeeper:
condition: service_healthy
pulsar-init:
condition: service_completed_successfully
# Map the local directory to the container to avoid bookie startup failure due to insufficient container disks.
volumes:
- ./data/bookkeeper:/pulsar/data/bookkeeper
command: bash -c "bin/apply-config-from-env.py conf/bookkeeper.conf && exec bin/pulsar bookie"
# Start broker
broker:
image: apachepulsar/pulsar:latest
container_name: broker
hostname: broker
restart: on-failure
# networks:
# - pulsar
environment:
- metadataStoreUrl=zk:zookeeper:2181
- zookeeperServers=zookeeper:2181
- clusterName=cluster-a
- managedLedgerDefaultEnsembleSize=1
- managedLedgerDefaultWriteQuorum=1
- managedLedgerDefaultAckQuorum=1
- advertisedAddress=broker
- advertisedListeners=external:pulsar://broker:6650
- PULSAR_MEM=-Xms512m -Xmx512m -XX:MaxDirectMemorySize=256m
- OTEL_EXPORTER_OTLP_ENDPOINT=http://jaegar:4317
- OTEL_METRIC_EXPORT_INTERVAL=1000
- OTEL_SDK_DISABLED=false
depends_on:
zookeeper:
condition: service_healthy
bookie:
condition: service_started
ports:
- '6650:6650'
- '8080:8080'
command: bash -c "bin/apply-config-from-env.py conf/broker.conf && exec bin/pulsar broker"
cache:
# image: bitnami/valkey:latest
image: valkey/valkey:alpine
ports:
- 6379:6379
db:
# image: timescale/timescaledb-ha:pg18
image: timescale/timescaledb:latest-pg18
ports:
- '5432:5432'
environment:
- POSTGRES_PASSWORD=password
- PGDATA=/pgdata
volumes:
- ./data/timescaledb:/pgdata
eventsdb:
image: clickhouse/clickhouse-server:25.3.2-alpine
ulimits:
nofile:
soft: 262144
hard: 262144
volumes:
- ./data/clickhouse:/var/lib/clickhouse
- ./data/clickhouse_log:/var/log/clickhouse-server
# - ./clickhouse/init:/docker-entrypoint-initdb.d
healthcheck:
test: ['CMD', 'clickhouse-client', '--query', 'SELECT 1']
interval: 10s
timeout: 5s
retries: 5
environment:
CLICKHOUSE_USER: clickhouse
CLICKHOUSE_PASSWORD: password
ports:
- '9000:9000'
- '8123:8123'
jaegar:
image: cr.jaegertracing.io/jaegertracing/jaeger:2.15.0
# networks:
# - pulsar
ports:
# - 9411:9411
# - 5778:5778
- 4318:4318
# - 4317:4317
- 16686:16686
consumer:
image: declutter/consumer:latest
# networks:
# - pulsar
environment:
NODE_NO_WARNINGS: 1
NODE_ENV: production
QUEUE_URL: pulsar://broker:6650
EVENTS_DB_HOST: eventsdb
CACHE_HOST: cache
TRACE_URL: http://jaegar:4318/v1/traces
TRACE_ENABLE: true
TRACE_SAMPLING_RATE: 1.0
depends_on:
broker:
condition: service_started
eventsdb:
condition: service_healthy
cache:
condition: service_started
# jaegar:
# condition: service_started
producer:
image: declutter/producer:latest
# networks:
# - pulsar
environment:
NODE_NO_WARNINGS: 1
NODE_ENV: production
QUEUE_URL: pulsar://broker:6650
CACHE_HOST: cache
# BLOOM_CAPACITY: 1000000
TRACE_URL: http://jaegar:4318/v1/traces
TRACE_ENABLE: true
TRACE_SAMPLING_RATE: 1.0
depends_on:
broker:
condition: service_started
cache:
condition: service_started
# jaegar:
# condition: service_started
api:
image: declutter/api:latest
# networks:
# - pulsar
ports:
- 4000:4000
environment:
NODE_NO_WARNINGS: 1
JWT_SECRET: somethingsecure
NODE_ENV: production
QUEUE_URL: pulsar://broker:6650
USERS_DB_HOST: db
EVENTS_DB_HOST: eventsdb
CACHE_HOST: cache
TRACE_URL: http://jaegar:4318/v1/traces
TRACE_ENABLE: true
TRACE_SAMPLING_RATE: 1.0
depends_on:
broker:
condition: service_started
db:
condition: service_started
eventsdb:
condition: service_healthy
cache:
condition: service_started
# jaegar:
# condition: service_started