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
- MongoDb Database Breaks integer[] & bigi...
I've got a table with the below column created. When I try to insert the value `[-3408048000]` into it, the dart sdk cloud function call is successful (no error...
- Appwrite Functions cold start
Hello. I'm seeing really long cold starts on Appwrite Cloud Functions and wanted to know if this is expected. My function just authenticates the user, fetches ...
- Error can not create `tablesdb` event wi...
When i'm trying to add an event with `tablesdb` i get an error message My event value: `tablesdb.mtg-decklist-dev.tables.queue_parsing.rows.*.create` Same err...