From cfad067a63e62a4f53e01b1c44491a43b489d5c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20M=C3=B3ricz?= Date: Wed, 14 Aug 2024 18:52:40 +0200 Subject: [PATCH] fix(fly): change proxy limits --- apps/api/fly.staging.toml | 8 ++++---- apps/api/fly.toml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apps/api/fly.staging.toml b/apps/api/fly.staging.toml index 6a28a692..db1ed183 100644 --- a/apps/api/fly.staging.toml +++ b/apps/api/fly.staging.toml @@ -24,8 +24,8 @@ kill_timeout = '30s' [http_service.concurrency] type = "requests" - hard_limit = 100 - soft_limit = 50 + # hard_limit = 100 + soft_limit = 100 [[http_service.checks]] grace_period = "10s" @@ -51,8 +51,8 @@ kill_timeout = '30s' [services.concurrency] type = 'connections' - hard_limit = 25 - soft_limit = 20 + # hard_limit = 25 + soft_limit = 100 [[vm]] size = 'performance-2x' diff --git a/apps/api/fly.toml b/apps/api/fly.toml index 94108e5f..c0c87401 100644 --- a/apps/api/fly.toml +++ b/apps/api/fly.toml @@ -24,8 +24,8 @@ kill_timeout = '30s' [http_service.concurrency] type = "requests" - hard_limit = 200 - soft_limit = 75 + # hard_limit = 200 + soft_limit = 200 [[http_service.checks]] grace_period = "20s" @@ -50,8 +50,8 @@ kill_timeout = '30s' [services.concurrency] type = 'connections' - hard_limit = 30 - soft_limit = 12 + # hard_limit = 30 + soft_limit = 200 [[vm]] size = 'performance-4x'