-
Notifications
You must be signed in to change notification settings - Fork 13
fix(deployment): increase time before LAPIS readiness probe fails to 1min from 30s #7298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,8 +56,8 @@ spec: | |
| httpGet: | ||
| path: /sample/info | ||
| port: 8080 | ||
| periodSeconds: 10 | ||
| failureThreshold: 3 | ||
| periodSeconds: 5 | ||
| failureThreshold: 12 | ||
| timeoutSeconds: 5 | ||
| livenessProbe: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The liveness probe below is left at
Raising I couldn't verify from this job whether LAPIS's actuator health contributes a SILO indicator (no network access here) — if you can confirm it doesn't, point 2 alone is still a reason to widen it. Fix this → |
||
| httpGet: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Halving the period doubles how often each pod runs a real
/sample/info→ SILO round trip: ~0.8 → ~1.6 probes/s across eight organisms in CI. That is small in absolute terms, but it is extra work on exactly the code path whose latency is the problem, on pods that request100mCPU. The10s/failureThreshold: 6variant mentioned in the description buys the identical 60s tolerance without adding load; the only thing it gives up is halved recovery time after an eviction. Worth being explicit about which of the two you're optimising for, since the added load pushes slightly in the direction of the failure being mitigated.Also a nit: the neighbouring
failureThreshold: 36 # 3 minutes to startcarries its arithmetic inline. With the long comment dropped,5 × 12has no in-file record of meaning 60s — a trailing# 60swould keep the two probes readable side by side.