From 0d82f89bb5c7b413c3b3d0dbd30b2ad0e95f87c7 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 27 Sep 2024 14:18:42 -0700 Subject: [PATCH] reduce max connections to 10 --- app/clients/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/clients/__init__.py b/app/clients/__init__.py index cfd50d88c..993054279 100644 --- a/app/clients/__init__.py +++ b/app/clients/__init__.py @@ -13,7 +13,10 @@ AWS_CLIENT_CONFIG = Config( "addressing_style": "virtual", }, use_fips_endpoint=True, - max_pool_connections=50, + # This is the default but just for doc sake + # there may come a time when increasing this helps + # with job cache management + max_pool_connections=10, )