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
- Go 1.25 runtime
So I'm trying to use go 1.25 for my functions and I can only find go-1.23 as a function runtime. So I did some searching and found https://github.com/appwrite/a...
- Failed to generate functions SSL
```appwrite-worker-certificates | Cannot renew domain (functions.domain.com) on attempt no. 9 certificate: Failed to verify domain DNS records. appwrite-worker...
- Dart 3.10 runtime on self-host 1.8.1
I added dart-3.10 runtime in .env file, applied the changes, but cannot see such option on console. is dart 3.10 not supported by self hosted 1.8.1? if not, whe...