Autoscaling of Google app engine

0

How does autoscaling of Google App Engine works? Does it add more hardware support without any user intervention?

KawaiKx

Posted 2015-12-26T00:09:40.350

Reputation: 813

Question was closed 2015-12-26T04:07:47.167

Answers

2

Here's a quick summary: https://cloud.google.com/appengine/docs/python/scaling#scaling_dynamic_instances

App Engine automatically scales your app up and down as needed. It does not require any configuration.

For comparison, Google Compute Engine also supports autoscaling, but since Google doesn't know what you want to do with your GCE instances, setting that up requires a bit more configuration. See https://cloud.google.com/compute/docs/autoscaler/ for more on that.

Brandon Yarbrough

Posted 2015-12-26T00:09:40.350

Reputation: 173

Thanks. I also found this great video https://m.youtube.com/watch?v=hcU-cO4P2rA

– KawaiKx – 2015-12-26T10:43:08.393