From 5141612705f55f4908418d1283bbf1e950b8f8c1 Mon Sep 17 00:00:00 2001 From: Carlo Costino Date: Mon, 4 Nov 2024 12:22:30 -0500 Subject: [PATCH] Increase Celery resources This changeset increases the number of Celery workers available to our app in the production environment. It also bumps the amount of memory available to them to 3G each. Signed-off-by: Carlo Costino --- deploy-config/production.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy-config/production.yml b/deploy-config/production.yml index 2a7b7799d..f593f63a2 100644 --- a/deploy-config/production.yml +++ b/deploy-config/production.yml @@ -1,8 +1,8 @@ env: production web_instances: 2 web_memory: 2G -worker_instances: 2 -worker_memory: 2G +worker_instances: 4 +worker_memory: 3G scheduler_memory: 256M public_api_route: notify-api.app.cloud.gov admin_base_url: https://beta.notify.gov