Hello, I'm getting this in appwrite docker container logs.
I'm getting this when I try to delete a collection, or while creating an attribute.
I think i've seen this sometimes if the machine doesn't have enough memory
did you install appwrite using the install command? Did you tweak the compose file after?
I don't think I have touched redis configs. Probably because I'm using a Virtualbox VM?
what
you'll have to look at the logs for the appwrite-worker-databases container for this
so your compose file has this in redis config:
--maxmemory 512mb
--maxmemory-policy allkeys-lru
--maxmemory-samples 5
```?
Sorry Steven, seems like my VM ran out of HDD. So I think that was the problem
btw, my docker-compose file only has:
_APP_REDIS_HOST=redis
_APP_REDIS_PORT=6379
_APP_REDIS_USER=
_APP_REDIS_PASS=
As REDIS env variables
where can I find this?
wait what? That shouldn't be in your docker-compose.yml file...
in your docker-compose.yml file...
haha sorry, I was confused checking .env
God, im so tired.
Let me check again!
seems like I have those. I think my problem was HDD related
[SOLVED] Redis Error, lack of memory or disk space
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...
- TablesDB `updateRows` returns `database_...
Hi Appwrite team! I’m seeing a strange issue with TablesDB bulk row updates on a self-hosted Appwrite instance. **Environment** - Appwrite self-hosted `1.9.0` ...
- [SOLVED] Realtime Missing Channels
```js useEffect(() => { let subscription: RealtimeSubscription; async function loadChips() { try { const {rows: chi...