Official appengine documentation says that if we set threadsafe property to true in app.yaml then appengine will server concurrent requests.
Official link: https://developers.google.com/appengine/docs/python/python27/newin27#Concurrent_Requests
Does it mean application will be faster (than 2.5) if we have threadsafe property to true? Official documentation/blog says so but i am looking for real world experiences.
At highlevel, How does it work internally? Will our application be initialized and spawn a new theread for each request?
Any request can be routed to any instance, so consecutive requests from the same user are not necessarily sent to the same instance. An instance can handle multiple requests concurrently. The number of instances can be adjusted automatically as traffic changes.
The standard environment can scale from zero instances up to thousands very quickly. In contrast, the flexible environment must have at least one instance running for each active version and can take longer to scale up in response to traffic. Standard environment uses a custom-designed autoscaling algorithm.
gcloudignore file to tell gcloud which files should be not be uploaded for Cloud Build, without it, it defaults to .
App Engine calls the handler script with a Request and waits for the script to return; all data written to the standard output stream is sent as the HTTP response. There are size limits that apply to the response you generate, and the response may be modified before it is returned to the client.
You still only have one thread per request - you can't spawn.
With threadsafe off, Appengine will only route one request to an instance. So if the number of requests per second times the time to handle a request approaches one, Appengine will spin up a new instance to handle them. This cost money. With threadsafe on, Appengine can route more than one request to an instance.
Whether this helps you or not depends on your app and your traffic:
The simple rule is switch threadsafe on unless your app is very processing-intensive (little API waiting).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With