Whenever I deploy my project with app_cfg.py, there's a 3-4 second period of time where our project returns a 404 not found error. I thought this could be avoided by having multiple machines up and running. In the cloud console, it shows only one instance running all the time, even though I set min_idle_instances to three.
How can I avoid 404'ing the server during deployment?
Below is part of the app.yaml file
instance_class: F4
automatic_scaling:
min_idle_instances: 3
max_idle_instances: 6
min_pending_latency: 30ms # default value
max_pending_latency: automatic
max_concurrent_requests: 40