When looking at the logs of appwrite-mariadb I'm seeing a lot of:
2026-04-09 7:37:28 10 [Warning] Aborted connection 10 to db: 'appwrite' user: 'appwrite' host: '172.19.0.22' (Got timeout reading communication packets)
And I can't see function executions in console. It always shows them as empty even when functions have been executed.
I also had an issue where healtcheck user wasn't able to login to mariadb so I could never get healthy on the container. Was able to fix it with by switching it to use root user.
In my .env I have: _APP_USAGE_STATS="enabled"
For db config I have:
_APP_DB_ADAPTER="mariadb"
_APP_DB_HOST="mariadb"
_APP_DB_PORT="3306"
_APP_DB_SCHEMA="appwrite"
_APP_DB_USER="appwrite"
_APP_DB_PASS="*****"
_APP_DB_ROOT_PASS="*****"
Appwrite version: 1.9.0
I've even tried this:
docker compose down
docker volume rm appwrite_appwrite-mariadb
docker compose up -d --force-recreate --remove-orphans
And then restored a backup of the database to get my data back, but still the same issue persisted.
For functions under Usage tab I can see that they are getting executed, and I get expected results from them, but I can't see any execution logs.
Recommended threads
- TOO_MANY_REDIRECTS after temporarily ena...
I am losing my mind over this, I enabled this setting because I was having issues with sites not making links with https. I enabled it, ran into issues, so I di...
- listRows result parsing issue
I'm using Appwrite Dart SDK "24.2.0". When I perform a listRows call in dart, I have this reponse in JSON: in " Future<models.RowList> listRows()" { "total" :...
- Index for combination of columns
How am i suppposed to apply index so that combination of two columns alwasy remain unique in appwrite table though console