fix(devops): set Valkey maxmemory-policy to noeviction for BullMQ

BullMQ requires noeviction to prevent silent job data loss. With
allkeys-lru, Valkey could evict keys BullMQ depends on for job tracking.

Co-Authored-By: Claude Opus 4.6 <[email protected]>
This commit is contained in:
2026-02-14 16:51:42 -06:00
co-authored by Claude Opus 4.6
parent bcee4fa601
commit 899faba7e2
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ services:
command:
- valkey-server
- --maxmemory ${VALKEY_MAXMEMORY:-256mb}
- --maxmemory-policy allkeys-lru
- --maxmemory-policy noeviction
- --appendonly yes
ports:
- "${VALKEY_PORT:-6379}:6379"