App Engine <https://cloud.google.com/appengine/> is a managed service that takes care of instance VM scaling <https://cloud.google.com/appengine/docs/standard/python/how-instances-are-managed#scaling_dynamic_instances> for you. When more traffic hits your application, App Engine will automatically copy your application to new VMs and route traffic to them. App Engine will also turn down VMs when traffic slows down in order to save you money. You can change your scaling settings <https://cloud.google.com/appengine/docs/standard/python/an-overview-of-app-engine> to best fit your traffic patterns using the app.yaml <https://cloud.google.com/appengine/docs/standard/python/config/appref#scaling_elements> configuration file.
Additionally, you can deploy multiple independent services <https://cloud.google.com/appengine/docs/standard/python/microservices-on-app-engine> with their own code using the 'gcloud app deploy ~/my_app/app.yaml' <https://cloud.google.com/sdk/gcloud/reference/app/deploy> command, and App Engine will scale and route traffic to them for you. Just ensure you name the different 'service <https://cloud.google.com/appengine/docs/standard/python/config/appref#service>' in your app.yaml to tell gcloud what service to deploy your code to. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/32d9b70a-0ccf-4014-b0b7-3ce0f8cc4224%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
