Skip to content

Commit 59a82d2

Browse files
de-shnitisht
andauthored
fix: wait for healthy services (#1183)
Install curl for docker liveness check in Dockerfile --------- Co-authored-by: Nitish Tiwari <[email protected]>
1 parent 23993f4 commit 59a82d2

5 files changed

+45
-22
lines changed

Dockerfile.debug

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ RUN cargo build
3434
# final stage
3535
FROM docker.io/debian:bookworm-slim
3636

37+
RUN apt update && apt install -y curl
38+
3739
WORKDIR /parseable
3840

3941
# Copy the static binary into the final image

docker-compose-distributed-test-with-kafka.yaml

+12-6
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ services:
1111
volumes:
1212
- ./parseable-ingest-haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro
1313
depends_on:
14-
- parseable-ingest-one
15-
- parseable-ingest-two
14+
parseable-ingest-one:
15+
condition: service_healthy
16+
parseable-ingest-two:
17+
condition: service_healthy
1618
networks:
1719
- parseable-internal
1820
healthcheck:
@@ -55,7 +57,7 @@ services:
5557
parseable-query:
5658
build:
5759
context: .
58-
dockerfile: Dockerfile
60+
dockerfile: Dockerfile.debug
5961
platform: linux/amd64
6062
command: [ "parseable", "s3-store" ]
6163
ports:
@@ -72,6 +74,7 @@ services:
7274
- P_CHECK_UPDATE=false
7375
- P_PARQUET_COMPRESSION_ALGO=snappy
7476
- P_MODE=query
77+
- RUST_LOG=warn
7578
networks:
7679
- parseable-internal
7780
healthcheck:
@@ -210,9 +213,12 @@ services:
210213
networks:
211214
- parseable-internal
212215
depends_on:
213-
- parseable-query
214-
- parseable-ingest-haproxy
215-
- minio
216+
parseable-query:
217+
condition: service_healthy
218+
parseable-ingest-haproxy:
219+
condition: service_healthy
220+
minio:
221+
condition: service_healthy
216222
deploy:
217223
restart_policy:
218224
condition: on-failure

docker-compose-distributed-test.yaml

+16-8
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ services:
2828
parseable-query:
2929
build:
3030
context: .
31-
dockerfile: Dockerfile
31+
dockerfile: Dockerfile.debug
3232
platform: linux/amd64
3333
command: [ "parseable", "s3-store" ]
3434
ports:
@@ -45,6 +45,7 @@ services:
4545
- P_CHECK_UPDATE=false
4646
- P_PARQUET_COMPRESSION_ALGO=snappy
4747
- P_MODE=query
48+
- RUST_LOG=warn
4849
networks:
4950
- parseable-internal
5051
healthcheck:
@@ -53,7 +54,8 @@ services:
5354
timeout: 20s
5455
retries: 5
5556
depends_on:
56-
- minio
57+
minio:
58+
condition: service_healthy
5759
deploy:
5860
restart_policy:
5961
condition: on-failure
@@ -63,7 +65,7 @@ services:
6365
parseable-ingest-one:
6466
build:
6567
context: .
66-
dockerfile: Dockerfile
68+
dockerfile: Dockerfile.debug
6769
platform: linux/amd64
6870
command: [ "parseable", "s3-store", ]
6971
ports:
@@ -81,6 +83,7 @@ services:
8183
- P_PARQUET_COMPRESSION_ALGO=snappy
8284
- P_MODE=ingest
8385
- P_INGESTOR_ENDPOINT=parseable-ingest-one:8000
86+
- RUST_LOG=warn
8487
networks:
8588
- parseable-internal
8689
healthcheck:
@@ -89,8 +92,10 @@ services:
8992
timeout: 20s
9093
retries: 5
9194
depends_on:
92-
- parseable-query
93-
- minio
95+
parseable-query:
96+
condition: service_healthy
97+
minio:
98+
condition: service_healthy
9499
deploy:
95100
restart_policy:
96101
condition: on-failure
@@ -121,9 +126,12 @@ services:
121126
networks:
122127
- parseable-internal
123128
depends_on:
124-
- parseable-query
125-
- parseable-ingest-one
126-
- minio
129+
parseable-query:
130+
condition: service_healthy
131+
parseable-ingest-one:
132+
condition: service_healthy
133+
minio:
134+
condition: service_healthy
127135
deploy:
128136
restart_policy:
129137
condition: on-failure

docker-compose-test-with-kafka.yaml

+9-5
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ services:
4949
- P_KAFKA_BOOTSTRAP_SERVERS=kafka-0:9092
5050
# additional settings like security, tuning, etc.
5151
depends_on:
52-
- minio
53-
- kafka-0
52+
minio:
53+
condition: service_healthy
54+
kafka-0:
55+
condition: service_healthy
5456
healthcheck:
5557
test: [ "CMD", "curl", "-f", "http://localhost:8000/api/v1/liveness" ]
5658
interval: 15s
@@ -82,7 +84,8 @@ services:
8284
"parseable"
8385
]
8486
depends_on:
85-
- parseable
87+
parseable:
88+
condition: service_healthy
8689
networks:
8790
- parseable-internal
8891
deploy:
@@ -146,14 +149,15 @@ services:
146149
kafka-log-generator:
147150
build:
148151
context: ./scripts
149-
dockerfile: Dockerfile
152+
dockerfile: Dockerfile.debug
150153
environment:
151154
- KAFKA_BROKERS=kafka-0:9092
152155
- KAFKA_TOPIC=test-logs-stream
153156
- LOG_RATE=5000
154157
- TOTAL_LOGS=500_000
155158
depends_on:
156-
- kafka-0
159+
kafka-0:
160+
condition: service_healthy
157161
networks:
158162
- parseable-internal
159163
deploy:

docker-compose-test.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
parseable:
2828
build:
2929
context: .
30-
dockerfile: Dockerfile
30+
dockerfile: Dockerfile.debug
3131
platform: linux/amd64
3232
command: [ "parseable", "s3-store", ]
3333
ports:
@@ -43,8 +43,10 @@ services:
4343
- P_PASSWORD=parseableadmin
4444
- P_CHECK_UPDATE=false
4545
- P_PARQUET_COMPRESSION_ALGO=snappy
46+
- RUST_LOG=warn
4647
depends_on:
47-
- minio
48+
minio:
49+
condition: service_healthy
4850
healthcheck:
4951
test: [ "CMD", "curl", "-f", "http://localhost:8000/api/v1/liveness" ]
5052
interval: 15s
@@ -76,7 +78,8 @@ services:
7678
"parseable"
7779
]
7880
depends_on:
79-
- parseable
81+
parseable:
82+
condition: service_healthy
8083
networks:
8184
- parseable-internal
8285
deploy:

0 commit comments

Comments
 (0)