This is an automated email from the ASF dual-hosted git repository.

abhishek pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new 6370769cbf Fix documentation for druid.query.scheduler.numThreads. 
(#14381)
6370769cbf is described below

commit 6370769cbf7e1d5f7f7c55e7963babd03e47a69d
Author: Gian Merlino <[email protected]>
AuthorDate: Wed Jun 7 02:18:08 2023 -0700

    Fix documentation for druid.query.scheduler.numThreads. (#14381)
    
    * Fix documentation for druid.query.scheduler.numThreads.
---
 docs/configuration/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/configuration/index.md b/docs/configuration/index.md
index 6fab117c98..b765b67c3e 100644
--- a/docs/configuration/index.md
+++ b/docs/configuration/index.md
@@ -1801,7 +1801,7 @@ These Broker configurations can be defined in the 
`broker/runtime.properties` fi
 
 |Property|Description|Default|
 |--------|-----------|-------|
-|`druid.query.scheduler.numThreads`|Maximum number of HTTP threads to dedicate 
to query processing. To save HTTP thread capacity, this should be lower than 
`druid.server.http.numThreads`. It is worth noting that when 
`druid.server.http.enableRequestLimit` is set, query requests over this limit 
will be denied instead of waiting in the Jetty HTTP request queue.|Unbounded|
+|`druid.query.scheduler.numThreads`|Maximum number of concurrently-running 
queries. When this parameter is set lower than `druid.server.http.numThreads`, 
query requests beyond the limit are denied with HTTP 429 instead of waiting in 
the Jetty request queue. This has the effect of reserving the leftover Jetty 
threads for non-query requests.<br /><br />When this parameter is set equal to 
or higher than `druid.server.http.numThreads`, it has no effect.|Unbounded|
 |`druid.query.scheduler.laning.strategy`|Query laning strategy to use to 
assign queries to a lane in order to control capacities for certain classes of 
queries.|`none`|
 |`druid.query.scheduler.prioritization.strategy`|Query prioritization strategy 
to automatically assign priorities.|`manual`|
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to