From 08406b22f67564c9fd3ead1efa90304bea2d2002 Mon Sep 17 00:00:00 2001 From: Sriharsha Chintalapani Date: Fri, 28 Feb 2025 01:56:11 -0800 Subject: [PATCH] Add max/min server threads config (#20023) --- conf/openmetadata.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/conf/openmetadata.yaml b/conf/openmetadata.yaml index c47c40152e7..e7b89f925ec 100644 --- a/conf/openmetadata.yaml +++ b/conf/openmetadata.yaml @@ -26,6 +26,10 @@ server: bindHost: ${SERVER_HOST:-0.0.0.0} port: ${SERVER_ADMIN_PORT:-8586} + maxThreads: ${SERVER_MAX_THREADS:-50} + minThreads: ${SERVER_MIN_THREADS:-10} + idleThreadTimeout: ${SERVER_IDLE_THREAD_TIMEOUT:-1 minute} + # Above configuration for running http is fine for dev and testing. # For production setup, where UI app will hit apis through DPS it # is strongly recommended to run https instead. Note that only