From 2d6ee2eb728d7e69a8e404ab9cf1049c17e93055 Mon Sep 17 00:00:00 2001 From: Ben Thorner Date: Mon, 14 Feb 2022 14:13:21 +0000 Subject: [PATCH] Bump memory for Celery Beat to 512M This fixes the app crashing - apparently due to a lack of free memory. Looking over the last month, we can see it's been hovering at ~90% utilisation. 512M seems like a good compromise to avoid this happening again vs paying for what we use. The limit was last changed 5 years ago: https://github.com/alphagov/notifications-api/pull/882 --- manifest.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.yml.j2 b/manifest.yml.j2 index b8ac8a803..a75a50740 100644 --- a/manifest.yml.j2 +++ b/manifest.yml.j2 @@ -49,7 +49,7 @@ }, }, - 'notify-delivery-celery-beat': {'memory': '128M'}, + 'notify-delivery-celery-beat': {'memory': '512M'}, 'notify-delivery-worker-jobs': {'memory': '2G'}, 'notify-delivery-worker-research': {}, 'notify-delivery-worker-sender': {'disk_quota': '2G', 'memory': '4G'},