What happens if an app needs more than the _APP_WORKER_PER_CORE value?
what app are you talking about?
It's a flutter app and it makes calls to many functions which results in that many workers, so the question is what happens when the number workers reaches the value in _APP_WORKER_PER_CORE? Do the functions simply fail beyond that point or what is the behavior?
they get blocked until a worker is available and then it's processed
so on the client side, it'll just look like the API call is taking longer to execute
So in this case how long do you have to wait for a worker to become available?
Until the busy ones are free...I would assume it's a FIFO order but I don't know for sure
Recommended threads
- Which flutter SDK version for Self Hoste...
Hi all, Is there a good way to figure out which version of flutter SDK and Dart SDK is current for latest available self-hosted 1.8.0 ? I know new features are...
- Bug Report: Crash when trying to createR...
https://github.com/appwrite/sdk-for-android/issues/96 I think the bug is related with this one https://discord.com/channels/564160730845151244/1443887021314539...
- Dokploy docker compose
Hey guys hope y'all doing well, I was wondering if anyone could share a working 1.8.0 docker-compose that works with Dokploy I tried making it but it just does...