Hi, I was reading https://github.com/appwrite/appwrite/issues/1425 Please could someone clarify (in nodejs 18.0, dotnet 6.0 and python 3.10) if many executions to the same functon are triggered at the same time, they run sequentially or parallel in the runtime container of that function?
Im using version 1.3.1
There are two types of function executions: synchronous and asynchronous.
Synchronous executions are created by calling the create execution API and passing false for async. These executions are processed concurrently.
Every other function execution is asynchronous. These executions get queued and are processed by the functions worker. Because the default self hosted installation of Appwrite only has 1 worker, each event is processed sequentially. In order to process them concurrently, you would have to scale out the workers.
Understood π thank you
[SOLVED] Sequential/Parallel functions
Recommended threads
- Appwrite functions dart runtime (3.7 sup...
It seems that currently Appwrite functions only support Dart runtime to 3.5, for my code I need dart 3.7. Is there any plan to support Dart3.7 runtime soon. Is ...
- Update string attribute
Hi, Unsure if weβre able to use newKey when updating string attribute over node.js server api call to change an attribute name instead of having to create a ne...
- @napi-rs/canvas in Cloud Function
Has anyone tried rendering images using [@napi-rs/canvas](https://www.npmjs.com/package/@napi-rs/canvas) in Appwrite Functions? I've got a Bun runtime setup for...