Rank 3: Container
Hello all,
I have a question about the functions working on a self hosted instance.
My function response gets cooked in 30 seconds or so, due to calling different apis, retrieving some information in the cluster somewhere and sorting things through blabla. I have outsourced the heavy parts to other machines but I question if I could use Appwrite functions to combine them all in one place, instead of JWT token validating the user account in those machines.
Question is:
Do the self hosted functions run in serial or in parallel? I mean does one request wait for the previous one to finish so it can start working on its current request (right after the first one quit blocking the machine) ?
If so, Can I limit the resource that one thread uses so there might be more resources to start other threads?
If not, how many functions in parallel can Appwrite handle?
Thank you.