--
You received this message because you are subscribed to a topic in the Google Groups "Google App Engine" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-appengine/xzVWKR-ulQ0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-appengine+unsubscribe@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
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/d5f7bdb4-177f-4c7c-8624-4282de3731fa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
We're running on Flexible. Here is my app.yaml:service: rankingruntime: pythonruntime_config:python_version: 2vm: trueentrypoint: gunicorn -b :$PORT main:appresources:cpu: 32memory_gb: 120manual_scaling:instances: 3We're testing various configurations of gunicorn likegunicorn -b :$PORT --threads=64 main:app.Until now we could get QPS around 28 with CPU utilization 70% and we're trying to push more.I'm just wondering if there is any hard limit on in-flight requests.