Deploying the standard python function takes around 40 seconds on my raspberry pi 4 with 8gb ram, 1.8ghz, ARM v8. Is this normal? Does Appwrite need that much power just to deploy a function? For dart functions, its more then 1m30s even
maybe...you can try to run docker stats
to try and see what's using what while deploying
The container that took the most cpu% was a container with a random id, it wasnt any of the appwrite-... containers
that's probably the runtime container. it's named: <project id>-<deployment id>
and the image should match your runtime language and version
dart definitely takes more resources because it's compiling our code with the rest of the runtime code
including pulling dependencies
Recommended threads
- Need help with createExecution function
Hi, Need some help understanding createExecution. When requesting function execution via createExecution, the function handler arguments are incorrect and rese...
- HTTP POST to function returning "No Appw...
Hi everyone, I’m running into an issue with my self-hosted Appwrite instance. I’ve set up my environment variables (APPWRITE_FUNCTION_PROJECT_ID, APPWRITE_FUNC...
- Can't add dart 3.5 runtime
Modified the `.env` to enable dart 3.5 runtime on my self-hosted instance but still can't find the runtime when creating a new function. I manually pulled the i...