From 4d73a22d48c5a014752532a85a94e0693a77edb8 Mon Sep 17 00:00:00 2001 From: Sakis Date: Fri, 30 Jul 2021 12:49:42 +0300 Subject: [PATCH] Set jobs worker memory to 2GB This is to see if the worker requires slightly more memory than it has access to or to determine if there is a memory leak somewhere in the code that needs to be further investigated. This comes at the heels of yesterday's issue that we could not process the CSVs the users uploaded, where the memory graph for this worker showed that it was using almost all of its available memory, so a redeploy fixed the problem. --- manifest.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.yml.j2 b/manifest.yml.j2 index f17d065e8..acd6ca6cd 100644 --- a/manifest.yml.j2 +++ b/manifest.yml.j2 @@ -50,7 +50,7 @@ }, 'notify-delivery-celery-beat': {'memory': '128M'}, - 'notify-delivery-worker-jobs': {}, + 'notify-delivery-worker-jobs': {'memory': '2G'}, 'notify-delivery-worker-research': {}, 'notify-delivery-worker-sender': {'disk_quota': '2G', 'memory': '4G'}, 'notify-delivery-worker-periodic': {},