As I have your app id from another thread I'll reply here about this question. App Engine by default keeps a number of instances idle, and is controllable using the 'max_idle_instances <https://cloud.google.com/appengine/docs/python/config/appref#max_idle_instances> ' parameter in app.yaml. The value is 'auto' if you don't specify anything, and you can see the current value in the Cloud Console under 'App Engine' -> 'Versions' (you may need to click 'More Columns').
These absolutely do benefit you as those instances will already be available to serve requests in the event of a traffic spike. You can reduce the max idle instances but this can adversely affect latency. As mentioned in the documentation <https://cloud.google.com/appengine/docs/python/console/managing-resources#change_auto_scaling_performance_settings> : - *Max Idle Instances* - Setting Max Idle Instances <https://cloud.google.com/appengine/docs/python/config/appref#max_idle_instances> allows App Engine to shut down idle instances above the specified limit so they won't consume additional quota or create charges. However, fewer idle instances also means that the App Engine Scheduler may have to spin up new instances if you experience a spike in traffic -- potentially increasing user-visible latency for your app. On Tuesday, December 20, 2016 at 10:52:33 PM UTC-5, Love Sharma wrote: > > Hi, > > I have been observing my instance creation stuff closely. And it seems, > lots of time I am getting charge more than I use. (Please check screenshot) > > - Instance created: 2 (Out of 2, it seems only 1 instance is active) > - Billed instances: 3 (Why?, I am not benefitted by the 3rd instance, then > why charging more?) > > Above issue is very common (the ratio is 2:5 sometime), lots of time I am > being charged more without using it. > > Please look into it, > > Thanks, > Love Sharma > -- 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/9002ff33-62e4-43b0-9048-ae3136162bcc%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
