From 84008fe72a82a303e2abfd43ef35007f49fe97c4 Mon Sep 17 00:00:00 2001 From: Jeremy Prevost Date: Fri, 2 Aug 2024 15:57:03 -0400 Subject: [PATCH] update publishing to use permormance-m dynos https://mitlibraries.atlassian.net/browse/ETD-598 --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index beae3a1b..f19d4956 100644 --- a/README.md +++ b/README.md @@ -369,10 +369,11 @@ Publication Review - Publish) ```shell # scale the worker dyno to ensure we have enough memory - heroku ps:scale worker=1:standard-2x --app TARGET-HEROKU-APP + # as off Aug 2024 `performance-m` has been sufficient + heroku ps:scale worker=1:performance-m --app TARGET-HEROKU-APP # run the output queue processing job - heroku run -s standard-2x rails dss:process_output_queue --app TARGET-HEROKU-APP + heroku run -s performance-m rails dss:process_output_queue --app TARGET-HEROKU-APP # wait for all ETD emails to be received (the preservation email is the final one to look for) # scale the worker back down so we do not pay for more CPU/memory than we need