Reputation: 307
I have one python instance running in Google app engine (billing enabled). Now if my users increase and number of requests increase, then -
Google app engine automatically scales and handles all the requests or should I have to do anything like creating more frontend instances (to accommodate the increase in user traffic)?
Upvotes: 0
Views: 754
Reputation: 2430
App Engine will automatically scale the instances to accomodate for increased traffic.
You can change how instances are scaled up with the settings in the App Engine dashboard. Go to Application Settings > Performance and you can change a couple of settings to alter how instances are spun up. The settings you want to look at are:
Upvotes: 2
Reputation: 10128
You should read more about warmup request and set application configuration but if it heavy traffic if not do care just pay more. You should think also about some sharding if it required.
Upvotes: -1
Reputation: 2276
App engine automatically scales base on your traffic, the only limit is your daily budget.
Upvotes: 0