capistrant commented on code in PR #19271:
URL: https://github.com/apache/druid/pull/19271#discussion_r3399132362


##########
docs/configuration/index.md:
##########
@@ -746,6 +746,7 @@ These Coordinator static configurations can be defined in 
the `coordinator/runti
 |Property|Description|Default|
 |--------|-----------|-------|
 |`druid.coordinator.period`|The run period for the Coordinator. The 
Coordinator operates by maintaining the current state of the world in memory 
and periodically looking at the set of "used" segments and segments being 
served to make decisions about whether any changes need to be made to the data 
topology. This property sets the delay between each of these runs.|`PT60S`|
+|`druid.coordinator.server.maxConcurrentRequests`|Maximum number of concurrent 
requests to coordinator API endpoints (`/druid/coordinator/v1/*`, 
`/druid-internal/*`) that the Coordinator will process simultaneously. This 
prevents thread exhaustion while preserving access to health check endpoints. 
Set to `-1` to disable quality of service filtering entirely. If not specified, 
defaults to `max(1, max(serverHttpNumThreads - 4, serverHttpNumThreads * 
0.8))`.|`max(1, max(serverHttpNumThreads - 4, serverHttpNumThreads * 0.8))`|

Review Comment:
   looks like the code actually gates Qos on `> 0`. Not that it is a big deal 
but either the doc or the code should reflect this. I think it would be the doc 
that just says set to `<= 0` to disable?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to