-
Notifications
You must be signed in to change notification settings - Fork 595
/
compose.yaml
637 lines (609 loc) · 16 KB
/
compose.yaml
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
services:
clickhouse:
image: clickhouse/clickhouse-server:24.10.1.2812-alpine
ports:
- 8123:8123 # http port
- 9000:9000 # native protocol port
healthcheck:
interval: 1s
retries: 10
test:
- CMD-SHELL
- wget -qO- 'http://127.0.0.1:8123/?query=SELECT%201' # SELECT 1
volumes:
- clickhouse:/var/lib/clickhouse/user_files/ibis
networks:
- clickhouse
mysql:
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
MYSQL_DATABASE: ibis_testing
MYSQL_PASSWORD: ibis
MYSQL_USER: ibis
healthcheck:
interval: 1s
retries: 20
test:
- CMD
- mariadb-admin
- ping
image: mariadb:11.5.2
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: 20
test:
- CMD
- pg_isready
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"
# The default collation in MSSQL isS QL_Latin1_General_CP1_CI_AS
# where the CI stands for Case Insensitive.
# We use a case-sensitive collation for testing so that we don't
# break users with case-sensitive collations.
MSSQL_COLLATION: Latin1_General_100_BIN2_UTF8
healthcheck:
interval: 1s
retries: 20
test:
- CMD-SHELL
- $(find /opt -name sqlcmd -type f -executable) -C -S localhost -U sa -P "$$MSSQL_SA_PASSWORD" -Q "SELECT 1"
ports:
- 1433:1433
volumes:
- mssql:/data
networks:
- mssql
hive-metastore-db:
image: postgres:17.0-alpine
environment:
POSTGRES_USER: admin
POSTGRES_PASSWORD: admin
POSTGRES_DB: metastore
healthcheck:
interval: 1s
retries: 20
test:
- CMD
- pg_isready
- --port=23456
command: -c port=23456
networks:
- trino
minio:
image: bitnami/minio:2024.10.29
environment:
MINIO_ROOT_USER: accesskey
MINIO_ROOT_PASSWORD: secretkey
MINIO_SKIP_CLIENT: "yes"
healthcheck:
interval: 1s
retries: 20
test:
- CMD-SHELL
- mc ready data && mc mb --ignore-existing data/trino data/risingwave
networks:
- trino
- risingwave
volumes:
- $PWD/docker/minio/config.json:/.mc/config.json:ro
hive-metastore:
# TODO: healthcheck?
image: starburstdata/hive:3.1.3-e.4
environment:
HIVE_METASTORE_DRIVER: org.postgresql.Driver
HIVE_METASTORE_JDBC_URL: jdbc:postgresql://hive-metastore-db:23456/metastore
HIVE_METASTORE_USER: admin
HIVE_METASTORE_PASSWORD: admin
HIVE_METASTORE_WAREHOUSE_DIR: s3://trino/
HIVE_METASTORE_USERS_IN_ADMIN_ROLE: "admin"
S3_ENDPOINT: http://minio:9000
S3_ACCESS_KEY: accesskey
S3_SECRET_KEY: secretkey
S3_PATH_STYLE_ACCESS: "true"
REGION: ""
GOOGLE_CLOUD_KEY_FILE_PATH: ""
AZURE_ADL_CLIENT_ID: ""
AZURE_ADL_CREDENTIAL: ""
AZURE_ADL_REFRESH_URL: ""
AZURE_ABFS_STORAGE_ACCOUNT: ""
AZURE_ABFS_ACCESS_KEY: ""
AZURE_WASB_STORAGE_ACCOUNT: ""
AZURE_ABFS_OAUTH: ""
AZURE_ABFS_OAUTH_TOKEN_PROVIDER: ""
AZURE_ABFS_OAUTH_CLIENT_ID: ""
AZURE_ABFS_OAUTH_SECRET: ""
AZURE_ABFS_OAUTH_ENDPOINT: ""
AZURE_WASB_ACCESS_KEY: ""
depends_on:
hive-metastore-db:
condition: service_healthy
minio:
condition: service_healthy
networks:
- trino
trino:
depends_on:
- hive-metastore
healthcheck:
interval: 2s
retries: 15
test:
- CMD-SHELL
- trino --output-format null --execute 'show schemas in hive; show schemas in memory'
image: trinodb/trino:464
ports:
- 8080:8080
networks:
- trino
volumes:
- $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:17.0-alpine
container_name: druid-postgres
environment:
POSTGRES_PASSWORD: FoolishPassword
POSTGRES_USER: druid
POSTGRES_DB: druid
healthcheck:
interval: 2s
retries: 30
test:
- CMD-SHELL
- pg_isready
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: 2s
retries: 30
test:
- CMD-SHELL
- nc -z 127.0.0.1 2181
networks:
- druid
druid-coordinator:
image: apache/druid:31.0.0
hostname: coordinator
container_name: coordinator
volumes:
- druid:/opt/shared
- druid:/opt/druid/var
depends_on:
druid-zookeeper:
condition: service_healthy
druid-postgres:
condition: service_healthy
command:
- coordinator
healthcheck:
interval: 2s
retries: 30
test:
- CMD-SHELL
- nc -z 127.0.0.1 8081
env_file:
- ./docker/druid/environment
networks:
- druid
druid-broker:
image: apache/druid:31.0.0
hostname: broker
container_name: broker
volumes:
- druid:/opt/druid/var
depends_on:
druid-zookeeper:
condition: service_healthy
druid-postgres:
condition: service_healthy
druid-coordinator:
condition: service_healthy
command:
- broker
healthcheck:
interval: 2s
retries: 30
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:31.0.0
hostname: historical
container_name: historical
volumes:
- druid:/opt/shared
- druid:/opt/druid/var
depends_on:
druid-zookeeper:
condition: service_healthy
druid-postgres:
condition: service_healthy
druid-coordinator:
condition: service_healthy
command:
- historical
healthcheck:
interval: 2s
retries: 30
test:
- CMD-SHELL
- nc -z 127.0.0.1 8083
env_file:
- ./docker/druid/environment
networks:
- druid
druid-middlemanager:
image: apache/druid:31.0.0
hostname: middlemanager
container_name: middlemanager
volumes:
- druid:/data
- druid:/opt/shared
- druid:/opt/druid/var
depends_on:
druid-zookeeper:
condition: service_healthy
druid-postgres:
condition: service_healthy
druid-coordinator:
condition: service_healthy
command:
- middleManager
healthcheck:
interval: 2s
retries: 30
test:
- CMD-SHELL
- nc -z 127.0.0.1 8091
env_file:
- ./docker/druid/environment
networks:
- druid
druid:
image: apache/druid:31.0.0
hostname: router
container_name: router
volumes:
- druid:/opt/druid/var
depends_on:
druid-zookeeper:
condition: service_healthy
druid-postgres:
condition: service_healthy
druid-coordinator:
condition: service_healthy
druid-middlemanager:
condition: service_healthy
druid-historical:
condition: service_healthy
druid-broker:
condition: service_healthy
ports:
- 8888:8888
command:
- router
healthcheck:
interval: 2s
retries: 30
test:
- CMD-SHELL
- nc -z 127.0.0.1 8888
env_file:
- ./docker/druid/environment
networks:
- druid
oracle:
image: gvenzl/oracle-free:23.5-slim
environment:
ORACLE_PASSWORD: ibis
ORACLE_DATABASE: IBIS_TESTING
APP_USER: ibis
APP_USER_PASSWORD: ibis
ports:
- 1521:1521
healthcheck:
interval: 2s
retries: 25
test:
- CMD-SHELL
- ./healthcheck.sh
restart: on-failure
networks:
- oracle
volumes:
- oracle:/opt/oracle/data
exasol:
image: exasol/docker-db:8.31.0
privileged: true
ports:
- 8563:8563
healthcheck:
interval: 10s
retries: 9
timeout: 90s
test:
- CMD-SHELL
- /opt/exasol/db-8.*/bin/Console/exaplus -q -x -c 127.0.0.1:8563 -u sys -p exasol -jdbcparam validateservercertificate=0 -sql 'SELECT 1;'
networks:
- exasol
volumes:
- exasol:/data
flink-jobmanager:
image: flink:${FLINK_VERSION}
environment:
FLINK_PROPERTIES: |
jobmanager.rpc.address: flink-jobmanager
ports:
- 8081:8081
command: jobmanager
networks:
- flink
flink:
image: ibis-flink-${FLINK_VERSION}
build:
context: ./docker/flink
args:
FLINK_VERSION: ${FLINK_VERSION}
environment:
FLINK_PROPERTIES: |
jobmanager.rpc.address: flink-jobmanager
taskmanager.numberOfTaskSlots: 2
taskmanager.memory.process.size: 2048m
taskmanager.memory.network.fraction: 0.4
taskmanager.memory.network.min: 512mb
taskmanager.memory.network.max: 2gb
depends_on:
- flink-jobmanager
command: taskmanager
networks:
- flink
kudu:
cap_add:
- SYS_TIME
image: apache/kudu:1.17.0
networks:
- impala
command: kudu master run --fs_wal_dir=/var/lib/kudu/master --fs_data_dirs=/var/lib/kudu/master
healthcheck:
interval: 1s
retries: 60
test:
- CMD-SHELL
- kudu cluster ksck kudu:7051
kudu-tserver:
cap_add:
- SYS_TIME
image: apache/kudu:1.17.0
depends_on:
kudu:
condition: service_healthy
networks:
- impala
command: kudu tserver run --fs_wal_dir=/var/lib/kudu/master --fs_data_dirs=/var/lib/kudu/master --tserver_master_addrs=kudu
healthcheck:
interval: 1s
retries: 60
test:
- CMD-SHELL
- kudu cluster ksck kudu:7051
impala-hive-metastore:
image: apache/impala:4.4.1-impala_quickstart_hms
container_name: impala-hive-metastore
command: hms
volumes:
# Volume used to store Apache Derby database.
- impala:/var/lib/hive
# Warehouse directory. HMS does file operations so needs access to the
# shared volume.
- impala:/user/hive/warehouse
- ./docker/impala/conf:/opt/hive/conf:ro
healthcheck:
interval: 3s
retries: 20
test:
- CMD-SHELL
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/9083; exit $$?;'
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/impala-hive-metastore/9083; exit $$?;'
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/impala-hive-metastore.impala/9083; exit $$?;'
networks:
impala:
aliases:
- impala-hive-metastore
- impala-hive-metastore.impala
statestored:
image: apache/impala:4.4.1-statestored
ports:
- 25010:25010 # Web debug UI
command:
- -redirect_stdout_stderr=false
- -logtostderr
- -v=1
volumes:
- ./docker/impala/conf:/opt/impala/conf:ro
healthcheck:
interval: 3s
retries: 20
test:
- CMD-SHELL
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/25010; exit $$?;'
networks:
- impala
catalogd:
image: apache/impala:4.4.1-catalogd
depends_on:
impala-hive-metastore:
condition: service_started
statestored:
condition: service_healthy
ports:
- 25020:25020 # Web debug UI
command:
- -redirect_stdout_stderr=false
- -logtostderr
- -v=1
- -hms_event_polling_interval_s=1
- -invalidate_tables_timeout_s=999999
volumes:
# Warehouse directory. Catalog does file operations so needs access to the
# shared volume.
- impala:/user/hive/warehouse
- ./docker/impala/conf:/opt/impala/conf:ro
healthcheck:
interval: 3s
retries: 20
test:
- CMD-SHELL
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/25020; exit $$?;'
networks:
- impala
impala:
image: apache/impala:4.4.1-impalad_coord_exec
depends_on:
statestored:
condition: service_healthy
catalogd:
condition: service_healthy
kudu:
condition: service_healthy
kudu-tserver:
condition: service_healthy
ports:
- 21050:21050 # HS2 endpoint
healthcheck:
interval: 3s
retries: 20
test:
- CMD-SHELL
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/21050; exit $$?;'
command:
- -v=1
- -redirect_stdout_stderr=false
- -logtostderr
- -kudu_master_hosts=kudu:7051
- -mt_dop_auto_fallback=true
- -default_query_options=mt_dop=4,default_file_format=parquet,default_transactional_type=insert_only
- -mem_limit=4gb
environment:
# Keep the Java heap small to preserve memory for query execution.
JAVA_TOOL_OPTIONS: -Xmx1g
volumes:
- impala:/user/hive/warehouse
- ./docker/impala/conf:/opt/impala/conf:ro
networks:
- impala
risingwave:
image: ghcr.io/risingwavelabs/risingwave:v2.0.2
command: "standalone --meta-opts=\" \
--advertise-addr 0.0.0.0:5690 \
--backend mem \
--state-store hummock+minio://accesskey:secretkey@minio:9000/risingwave \
--data-directory hummock_001\" \
--compute-opts=\"--advertise-addr 0.0.0.0:5688 --role both\" \
--frontend-opts=\"--listen-addr 0.0.0.0:4566 --advertise-addr 0.0.0.0:4566\" \
--compactor-opts=\"--advertise-addr 0.0.0.0:6660\""
ports:
- 4566:4566
depends_on:
minio:
condition: service_healthy
volumes:
- risingwave:/data
environment:
RUST_BACKTRACE: "1"
ENABLE_TELEMETRY: "false"
healthcheck:
test:
- CMD-SHELL
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/6660; exit $$?;'
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/5688; exit $$?;'
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/4566; exit $$?;'
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/5690; exit $$?;'
interval: 1s
retries: 20
restart: on-failure
networks:
- risingwave
spark-connect:
image: bitnami/spark:3.5.3
ports:
- 15002:15002
command: /opt/bitnami/spark/sbin/start-connect-server.sh --name ibis_testing --packages org.apache.spark:spark-connect_2.12:3.5.3,org.apache.iceberg:iceberg-spark-runtime-3.5_2.12:1.6.1,io.delta:delta-core_2.12:2.1.0
healthcheck:
test:
- CMD-SHELL
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/15002; exit $$?;'
interval: 5s
retries: 6
volumes:
- spark-connect:/data
- $PWD/docker/spark-connect/conf.properties:/opt/bitnami/spark/conf/spark-defaults.conf:ro
- $PWD/docker/spark-connect/log4j2.properties:/opt/bitnami/spark/conf/log4j2.properties:ro
networks:
- spark-connect
networks:
impala:
# docker defaults to naming networks "$PROJECT_$NETWORK" but the Java Hive
# Metastore clients don't accept underscores in the thrift URIs and
# something is too-aggressively supplanting the specified thrift metastore
# URI with $SPECIFIED_URI.$NETWORK so rename it to something acceptable
name: "impala"
mysql:
mssql:
clickhouse:
postgres:
trino:
druid:
oracle:
exasol:
flink:
risingwave:
spark-connect:
volumes:
clickhouse:
druid:
mssql:
mysql:
oracle:
postgres:
exasol:
impala:
risingwave:
spark-connect: