Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

Cloud Run readiness check

I am reading the documentation on this page which was last updated on 2024-01-26.  If you scroll all the way down the last para mentions this  Cloud Run currently does not have a "readiness" check to avoid sending requests to unready applications.  Is this still true? I thought Cloud Run already supports readiness and liveness probes

Solved Solved
0 1 1,360
1 ACCEPTED SOLUTION

It does but you need to configure the startup probe based on which method you're using (i.e. tcp/gRPC)

Readiness = when a container is ready to serve traffic, liveliness = the healthy state of the container so you need to configure both for coverage. 

Container health checks (services)  |  Cloud Run Documentation  |  Google Cloud

 

 

 

View solution in original post

1 REPLY 1

It does but you need to configure the startup probe based on which method you're using (i.e. tcp/gRPC)

Readiness = when a container is ready to serve traffic, liveliness = the healthy state of the container so you need to configure both for coverage. 

Container health checks (services)  |  Cloud Run Documentation  |  Google Cloud

 

 

 

Top Solution Authors