Report a Dgraph Bug
When readiness/liveliness probes are enabled on Dgraph, the alpha node will never come up, and /health
check on alpha-1 returns:
Please retry again, server is not ready to accept requests
This happens on T’Challa (v20.11.0, v20.11.1), and does not reproduce on v20.03.7.
What version of Dgraph are you using?
v20.11.0
v20.11.1
Have you tried reproducing the issue with the latest release?
yep
What is the hardware spec (RAM, OS)?
m5.2xlarge
- Amazon Linux EKS worker nodes (
ami-0722776b2b19be414
inus-east-2
)
Steps to reproduce the issue (command/config used to run Dgraph).
cat <<-EOF > values.yml
alpha:
livenessProbe:
enabled: true
readinessProbe:
enabled: true
EOF
helm install "t1" dgraph/dgraph --values values.yaml
Expected behaviour and actual result.
Expected Behavior:
- alpha-1 reaches a live state
-
curl localhost:8080/health
on alpha-1 would return json.
Actual Results
- alpha-1 never gets “live” state
-
curl localhost:8080/health
on alpha-1 returnsPlease retry again, server is not ready to accept requests
- Logs: Dgraph Tchalla Liveliness Issue · GitHub