From 48ee8be3630353643467851f8448e00626583d32 Mon Sep 17 00:00:00 2001 From: kisfenyo Date: Sun, 19 Jul 2026 01:16:21 +0200 Subject: [PATCH] tandoor: raise app memory 512M -> 1024M (OOM proven) + correct mem_limit sum tandoor 2.6.13 never reached healthy; gunicorn workers were SIGKILLed in a loop: [ERROR] Worker (pid:366) was sent SIGKILL! Perhaps out of memory? [ERROR] Worker (pid:367) was sent SIGKILL! Perhaps out of memory? Separately, .felhom.yml mem_limit was already inconsistent with the compose file: it claimed 512M while the services summed to 512+256 = 768M. Per the REUSE.md rule mem_limit is the SUM of the compose limits, so it is now 1024+256 = 1280M. Campaign 7 catalog sweep. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01Nn3VgQk9iwEGgyx6QJ2NvE --- templates/tandoor/.felhom.yml | 4 ++-- templates/tandoor/docker-compose.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/tandoor/.felhom.yml b/templates/tandoor/.felhom.yml index 310cc66..75ff5b8 100644 --- a/templates/tandoor/.felhom.yml +++ b/templates/tandoor/.felhom.yml @@ -11,8 +11,8 @@ slug: "tandoor" # --- Resource hints (displayed on deploy screen) --- resources: - mem_request: "150M" - mem_limit: "512M" + mem_request: "512M" + mem_limit: "1280M" pi_compatible: true needs_hdd: false diff --git a/templates/tandoor/docker-compose.yml b/templates/tandoor/docker-compose.yml index 2b883e1..2bc0f78 100644 --- a/templates/tandoor/docker-compose.yml +++ b/templates/tandoor/docker-compose.yml @@ -34,7 +34,7 @@ services: deploy: resources: limits: - memory: 512M + memory: 1024M healthcheck: test: ["CMD", "wget", "--spider", "-q", "http://127.0.0.1:8080/accounts/login/"] interval: 30s