Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,13 @@ services:
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://127.0.0.1:8000/healthz', timeout=2)"]
interval: 5s
timeout: 3s
retries: 20
retries: 10
Comment thread
seonghobae marked this conversation as resolved.
# Warm-up window: failures inside start_period do not consume the retry
# budget, so a booting orchestrator that becomes healthy within 50s is
# never counted against retries. A dead service trips the gate at
# ~100s (start_period + 10 x 5s), matching the previous retries: 20
# budget exactly; the win is boot tolerance, not faster dead detection.
start_period: 50s
Comment thread
seonghobae marked this conversation as resolved.

backend:
build:
Expand Down
Loading