Resident instance doesn't seem to work

前端 未结 1 1353
陌清茗
陌清茗 2021-02-04 17:59

Following my previous question here:

Here\'s a screenshot of my billing-enable appengine console:

\"enter

相关标签:
1条回答
  • 2021-02-04 19:00

    As far as I know, resident instances are for times when no other instances (f. e. dynamic) are available (busy, no one started). They are the buffer between full utilization and new (dynamic) instances available. If every dynamic instance is at its limit (or no one available), the app engine needs some time to start new instances. In this time the resident instance is getting new requests so that your service is not getting busy for the users (and/or to decrease service response time). A resident instance with low usage will cost you as much as one with heavy usage.

    0 讨论(0)
提交回复
热议问题