From 945a08eadb74ec4534d0e3b4bd7b788ed03d5c98 Mon Sep 17 00:00:00 2001 From: Sojan Jose Date: Thu, 13 Nov 2025 23:49:06 -0800 Subject: [PATCH] chore: disable worker MemoryHigh throttling in systemd unit (#12871) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - set MemoryHigh to infinity in deployment/chatwoot-worker.1.service so the worker is throttled only by the existing MemoryMax hard limit - prevents cgroup reclaim from slowing Sidekiq under transient spikes while still keeping the hard stop at 1.5 GB --- deployment/chatwoot-worker.1.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/chatwoot-worker.1.service b/deployment/chatwoot-worker.1.service index ea893d20c..6cc169c9e 100644 --- a/deployment/chatwoot-worker.1.service +++ b/deployment/chatwoot-worker.1.service @@ -17,7 +17,7 @@ StandardInput=null SyslogIdentifier=%p MemoryMax=1.5G -MemoryHigh=1.4G +MemoryHigh=infinity MemorySwapMax=0 OOMPolicy=stop