From 764d4df0cf084fc238c846e891571dc94b2641bd Mon Sep 17 00:00:00 2001 From: Christina Li Date: Tue, 18 Apr 2023 17:56:22 -0700 Subject: [PATCH] Add configs for broker bounded Jersey ThreadPool executor --- configuration-reference/broker.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configuration-reference/broker.md b/configuration-reference/broker.md index e1f89ef5..2ac811e4 100644 --- a/configuration-reference/broker.md +++ b/configuration-reference/broker.md @@ -31,3 +31,7 @@ bin/pinot-admin.sh StartBroker -configFileName /path/to/broker.conf | pinot.broker.tls.requires\_client\_auth | false | toggle for requiring TLS client auth | | pinot.broker.http.server.thread.pool.corePoolSize | 2 * cores | Config for the thread-pool used by pinot-broker's http-server. | | pinot.broker.http.server.thread.pool.maxPoolSize | 2 * cores | Config for the thread-pool used by pinot-broker's http-server. | +| pinot.broker.enable.bounded.jersey.threadpool.executor| false | Enable bounded Jersey thread-pool to handle async requests. | +| pinot.broker.jersey.threadpool.executor.max.pool.size | 2 * cores | Config for the bounded Jersey thread-pool to handle async requests. | +| pinot.broker.jersey.threadpool.executor.core.pool.size| 2 * cores | Config for the bounded Jersey thread-pool to handle async requests. | +| pinot.broker.jersey.threadpool.executor.queue.size | Integer.MAX\_VALUE | Config for the bounded Jersey thread-pool to handle async requests. |