How to set max instances to one in Google App Engine
1 Answer
7 years ago by Divya
You need to add the following content to your app.yaml
file which resides in root of the project
runtime: nodejs
env: flex
automatic_scaling:
min_num_instances: 1
max_num_instances: 1
7 years ago by Karthik Divi