forked from ibis-project/ibis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
460 lines (439 loc) · 9.21 KB
/
docker-compose.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
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
version: "3.4"
services:
clickhouse:
image: clickhouse/clickhouse-server:23.8.2.7-alpine
ports:
- 8123:8123
- 9000:9000
healthcheck:
interval: 1s
retries: 10
test:
- CMD-SHELL
- nc -z 127.0.0.1 8123 && nc -z 127.0.0.1 9000
timeout: 10s
volumes:
- clickhouse:/var/lib/clickhouse/user_files/ibis
networks:
- clickhouse
impala:
depends_on:
- impala-postgres
- kudu
environment:
PGPASSWORD: postgres
healthcheck:
interval: 5s
retries: 20
test:
- CMD-SHELL
- nc -z 127.0.0.1 21050 && nc -z 127.0.0.1 50070
timeout: 10s
hostname: localhost
image: ibisproject/impala:latest
ports:
- 9020:9020
- 50070:50070
- 50075:50075
- 8020:8020
- 8042:8042
- 9083:9083
- 21000:21000
- 21050:21050
- 25000:25000
- 25010:25010
- 25020:25020
networks:
- impala
impala-postgres:
user: postgres
hostname: postgres
environment:
POSTGRES_PASSWORD: postgres
healthcheck:
interval: 1s
retries: 30
test:
- CMD
- pg_isready
timeout: 5s
image: postgres:13.12-alpine
networks:
- impala
kudu:
cap_add:
- SYS_TIME
depends_on:
- kudu-tserver
environment:
KUDU_MASTER: "true"
image: ibisproject/kudu:latest
ports:
- 7051:7051
- 8051:8051
networks:
- impala
healthcheck:
interval: 5s
retries: 20
test:
- CMD-SHELL
- kudu cluster ksck kudu:7051
timeout: 10s
kudu-tserver:
cap_add:
- SYS_TIME
environment:
KUDU_MASTER: "false"
image: ibisproject/kudu:latest
ports:
- 7050:7050
- 8050:8050
networks:
- impala
healthcheck:
interval: 5s
retries: 20
test:
- CMD-SHELL
- kudu cluster ksck kudu:7051
timeout: 10s
mysql:
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
MYSQL_DATABASE: ibis_testing
MYSQL_PASSWORD: ibis
MYSQL_USER: ibis
healthcheck:
interval: 1s
retries: 30
test:
- CMD
- mariadb-admin
- ping
timeout: 5s
image: mariadb:10.11.5
ports:
- 3306:3306
networks:
- mysql
volumes:
- mysql:/data
- $PWD/docker/mysql:/docker-entrypoint-initdb.d:ro
postgres:
user: postgres
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: ibis_testing
POSTGRES_USER: postgres
build: ./docker/postgres
image: ibis-postgres
healthcheck:
interval: 1s
retries: 30
test:
- CMD
- pg_isready
timeout: 5s
ports:
- 5432:5432
networks:
- postgres
volumes:
- postgres:/data
mssql:
image: mcr.microsoft.com/mssql/server:2022-latest
environment:
MSSQL_SA_PASSWORD: 1bis_Testing!
ACCEPT_EULA: "Y"
healthcheck:
interval: 1s
retries: 30
test:
- CMD-SHELL
- /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P "$$MSSQL_SA_PASSWORD" -Q "IF DB_ID('ibis_testing') IS NULL BEGIN CREATE DATABASE [ibis_testing] END"
timeout: 10s
ports:
- 1433:1433
volumes:
- mssql:/data
networks:
- mssql
trino-postgres:
user: postgres
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: ibis_testing
POSTGRES_USER: postgres
healthcheck:
interval: 1s
retries: 30
test:
- CMD
- pg_isready
timeout: 5s
build: ./docker/postgres
image: ibis-postgres
ports:
- 5433:5432
networks:
- trino
volumes:
- trino-postgres:/data
hive-metastore-mariadb:
image: mariadb:10.11.5
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
MYSQL_USER: admin
MYSQL_PASSWORD: admin
MYSQL_DATABASE: metastore_db
healthcheck:
interval: 1s
retries: 30
test:
- CMD
- mariadb-admin
- ping
timeout: 5s
networks:
- trino
hive-metastore-minio:
image: minio/minio:latest
environment:
- MINIO_ACCESS_KEY=accesskey
- MINIO_SECRET_KEY=secretkey
entrypoint: sh
command: -c 'mkdir -p /data/warehouse && /opt/bin/minio server /data'
networks:
- trino
hive-metastore:
build: ./docker/trino
image: ibis-hive-metastore
depends_on:
- hive-metastore-mariadb
- hive-metastore-minio
networks:
- trino
trino:
depends_on:
- trino-postgres
- hive-metastore
healthcheck:
interval: 5s
retries: 10
test:
- CMD-SHELL
- trino --output-format null --execute 'show schemas in postgresql; show schemas in hive; show schemas in memory'
timeout: 30s
image: trinodb/trino:426
ports:
- 8080:8080
networks:
- trino
volumes:
- $PWD/docker/trino/catalog/postgresql.properties:/etc/trino/catalog/postgresql.properties:ro
- $PWD/docker/trino/catalog/memory.properties:/etc/trino/catalog/memory.properties:ro
- $PWD/docker/trino/catalog/hive.properties:/etc/trino/catalog/hive.properties:ro
- $PWD/docker/trino/jvm.config:/etc/trino/jvm.config:ro
druid-postgres:
image: postgres:16.0-alpine
container_name: druid-postgres
environment:
- POSTGRES_PASSWORD=FoolishPassword
- POSTGRES_USER=druid
- POSTGRES_DB=druid
healthcheck:
interval: 1s
retries: 30
timeout: 90s
test:
- CMD-SHELL
- nc -z 127.0.0.1 5432
networks:
- druid
# Need 3.5 or later for container nodes
druid-zookeeper:
hostname: zookeeper
container_name: zookeeper
image: zookeeper:3.9
environment:
- ZOO_MY_ID=1
healthcheck:
interval: 10s
retries: 9
timeout: 90s
test:
- CMD-SHELL
- nc -z 127.0.0.1 2181
networks:
- druid
druid-coordinator:
image: apache/druid:26.0.0
hostname: coordinator
container_name: coordinator
volumes:
- druid:/opt/shared
- coordinator_var:/opt/druid/var
depends_on:
- druid-zookeeper
- druid-postgres
command:
- coordinator
healthcheck:
interval: 10s
retries: 9
timeout: 90s
test:
- CMD-SHELL
- nc -z 127.0.0.1 8081
env_file:
- ./docker/druid/environment
networks:
- druid
druid-broker:
image: apache/druid:26.0.0
hostname: broker
container_name: broker
volumes:
- broker_var:/opt/druid/var
depends_on:
- druid-zookeeper
- druid-postgres
- druid-coordinator
command:
- broker
healthcheck:
interval: 10s
retries: 9
timeout: 90s
test:
- CMD-SHELL
- nc -z 127.0.0.1 8082
ports:
- "8082:8082"
env_file:
- ./docker/druid/environment
networks:
- druid
druid-historical:
image: apache/druid:26.0.0
hostname: historical
container_name: historical
volumes:
- druid:/opt/shared
- historical_var:/opt/druid/var
depends_on:
- druid-zookeeper
- druid-postgres
- druid-coordinator
command:
- historical
healthcheck:
interval: 10s
retries: 9
timeout: 90s
test:
- CMD-SHELL
- nc -z 127.0.0.1 8083
env_file:
- ./docker/druid/environment
networks:
- druid
druid-middlemanager:
image: apache/druid:26.0.0
hostname: middlemanager
container_name: middlemanager
volumes:
- druid:/opt/shared
- middle_var:/opt/druid/var
- druid-data:/data
depends_on:
- druid-zookeeper
- druid-postgres
- druid-coordinator
command:
- middleManager
healthcheck:
interval: 10s
retries: 9
timeout: 90s
test:
- CMD-SHELL
- nc -z 127.0.0.1 8091
env_file:
- ./docker/druid/environment
networks:
- druid
druid:
image: apache/druid:26.0.0
hostname: router
container_name: router
volumes:
- router_var:/opt/druid/var
depends_on:
- druid-zookeeper
- druid-postgres
- druid-coordinator
- druid-middlemanager
- druid-historical
- druid-broker
ports:
- "8888:8888"
command:
- router
healthcheck:
interval: 10s
retries: 9
timeout: 90s
test:
- CMD-SHELL
- nc -z 127.0.0.1 8888
env_file:
- ./docker/druid/environment
networks:
- druid
oracle:
image: gvenzl/oracle-free:23
environment:
ORACLE_PASSWORD: ibis
ORACLE_DATABASE: IBIS_TESTING
APP_USER: ibis
APP_USER_PASSWORD: ibis
ports:
- 1521:1521
healthcheck:
interval: 5s
retries: 10
test:
- CMD-SHELL
- ./healthcheck.sh
timeout: 30s
restart: on-failure
networks:
- oracle
volumes:
- oracle:/opt/oracle/data
networks:
impala:
mysql:
mssql:
clickhouse:
postgres:
trino:
druid:
oracle:
volumes:
broker_var:
coordinator_var:
druid:
historical_var:
middle_var:
router_var:
# test data volumes
clickhouse:
druid-data:
mssql:
mysql:
oracle:
postgres:
trino-postgres: