The issue is that we wanted our appengine built on springboot java to autoscale when the request load increases without any downtime but the problem is that the appengine server takes more than 60 seconds to startup because of Springboot java & as per the GCP policy ,it starts allowing the api hits on appengine as soon as 60 seconds of spin-up is reached & it doesn't care whether server is completely startup or not. Hence, those api hits starts getting the 500 error. To tackle this issue , we found on one post that we should put "Warmup" in app.yaml: inbound_services:
- warmup
We tried putting this Warmup in app. yaml. But it doesn't help. We have tried using flexi app engine & we also tried cloudrunner but we face the same issue... Can anyone please suggest a right solution for this....