I am working on an application that, as I can see is doing multiple health checks?
- DB readiness probe
- Another API dependency readiness probe
When I look at cluster logs, I realize that my service, when it fails a DB-check, just throws 500 and goes down. What I am failing to understand here is that if DB was down or another API was down and IF I do not have a readiness probe then my container is going down anyway. Also, I will see that my application did throw some 500 because DB or another service was off.
What is the benefit of the readiness probe of my container was going down anyway? Another question I have is that is Healthcheck something that I should consider only if I am deploying my service to a cluster? If it was not a cluster microservice environment, would it increase/decrease benefits of performing healtheck?
There are three types of probes that Kubernetes uses to check the health of a
Pod
:Liveness
: Tells Kubernetes that something went wrong inside the container, and it's better to restart it to see if Kubernetes can resolve the error.Readiness
: Tells Kubernetes that thePod
is ready to receive traffic. Sometimes something happens that doesn't wholly incapacitate thePod
but makes it impossible to fulfill the client's request. For example: losing connection to a database or a failure on a third party service. In this case, we don't want Kubernetes to reset thePod
, but we also don't wish for it to send it traffic that it can't fulfill. When aReadiness
probe fails, Kubernetes removes thePod
from the service and stops communication with thePod
. Once the error is resolved, Kubernetes can add it back.Startup
: Tells Kubernetes when aPod
has started and is ready to receive traffic. These probes are especially useful on applications that take a while to begin. While thePod
initiates, Kubernetes doesn't sendLiveness
orReadiness
probes. If it did, they might interfere with the app startup. You can get more information about how probes work on this link:https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/