From 71ded37c2191108b4800795283ed40f95eb14ca8 Mon Sep 17 00:00:00 2001 From: unlair Date: Sat, 14 Feb 2026 23:35:09 -0500 Subject: [PATCH] fix: kong stops responding kong easily gets overwhelmed when receiving many requests, resulting in an error complaining about not having enough workers. This was due to KONG_NGINX_WORKER_PROCESSES=1 being set. Kong automatically determines the right number of worker processes (1 per allocated CPU) when this is not specified, which resolves the issue. --- internal/start/start.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/start/start.go b/internal/start/start.go index 846e87e4b7..56796d8875 100644 --- a/internal/start/start.go +++ b/internal/start/start.go @@ -525,7 +525,6 @@ vector --config /etc/vector/vector.yaml // Ref: https://github.com/Kong/kong/issues/3974#issuecomment-482105126 "KONG_NGINX_PROXY_PROXY_BUFFER_SIZE=160k", "KONG_NGINX_PROXY_PROXY_BUFFERS=64 160k", - "KONG_NGINX_WORKER_PROCESSES=1", // Use modern TLS certificate "KONG_SSL_CERT=/home/kong/localhost.crt", "KONG_SSL_CERT_KEY=/home/kong/localhost.key",