Are GAE instances limited to 10 concurrent request?

前端 未结 2 1247
既然无缘
既然无缘 2020-12-31 15:09

I\'ve heard from several sources that Google App Engine Instances have a hard limit of 10 concurrent request. I was wondering if someone could clarify what exactly this mean

相关标签:
2条回答
  • 2020-12-31 15:32

    As of July 12, 2012, it's the latter. The 10 concurrent limit is enforced through a limit on concurrent threads on every runtime. Most of such cases, our scheduler will try to spin up a new instance.

    Please also see the e-mail from jonmac on this thread: https://groups.google.com/d/msg/google-appengine/y-LnZ2WYJ5Q/j_w13F4oSSkJ

    0 讨论(0)
  • 2020-12-31 15:34

    This has been fixed as of Nov 18th 2013.

    The maximum number of requests any GAE instance can process is now configured via the max_concurrent_requests setting eg:

    runtime: go
    api_version: go1
    automatic_scaling:
      max_concurrent_requests: 80
    
    handlers:
      - url: /.*
        script: _go_app
    

    The default is 8 and the maximum is 80.

    See https://cloud.google.com/appengine/docs/python/config/appref#automatic_scaling for more info.

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