Concurrent requests handling on Google App Engine

前端 未结 3 2067
無奈伤痛
無奈伤痛 2021-01-23 09:29

I was experimenting with concurrent request handling on few platforms.

The aim of the experiment was to have a broad measure of the capacity bounds of s

3条回答
  •  青春惊慌失措
    2021-01-23 10:06

    Extending on Alexander's answer.

    The GAE scaling logic is based on incoming traffic trend analysis.

    The key for being able to handle your case - sudden spikes in traffic (which can't be takes into account in the trend analysis due to its variation speed) - is to have sufficient resident (idle) instances configured for your application to handle such traffic until GAE spins up additional dynamic instances. It can handle as high peaks as you want (if your pockets are deep enough).

    See Scaling dynamic instances for more details.

提交回复
热议问题