When building a python function on self hosted 1.9.6 version, CPU is +200% and build never complete. Server is KO. Need to stop it...
Hosted on CPX21 Hetzner: 3 VCPUs 4Gb Ram
Seems an issue with "appwrite-embedding" which consume a lot of RAM
Workaround:
- Created a
docker-compose.override.ymlfile with this:
services:
appwrite-embedding:
image: alpine:3.22
entrypoint: ["sleep", "infinity"]
- Relaunch the server:
docker compose up -d
Appwrite embedding is now swapped with a sleepy dummy container π
To restore it, just:
- Remove the
docker-compose.override.yml - Relaunch the server:
docker compose up -d
cc <@1356535431834898634>
Thanks <@743532656767270934> <@1356535431834898634> for taking the issue π
I think this can explain all user complying about 1.9.5+ upgrade functions timeout, building issues etc.
Recommended threads
- Latest Appwrite package 26.0.0 introduce...
It seems latest package from Appwrite replace Execution.functionId to resourceId + resourceType but Appwrite self hosted do not have that props: ``` I/flutter ...
- FCM Message error
When creating a message target via flutter sdk via ``` final target = await _account.createPushTarget( targetId: targetId, identifier: deviceTok...
- Bulk API limitations in self-hosted serv...
Environment: Appwrite Selfhost SDK: node-appwrite 28.0 Calling `upsertRows` (also applies to `createRows`/`updateRows`/`deleteRows`) with more than 100 rows fa...