nozjkoitop commented on code in PR #16889:
URL: https://github.com/apache/druid/pull/16889#discussion_r1776873011
##########
docs/configuration/index.md:
##########
@@ -1135,6 +1135,8 @@ The following configs only apply if the Overlord is
running in remote mode. For
|`druid.indexer.runner.taskAssignmentTimeout`|How long to wait after a task
has been assigned to a Middle Manager before throwing an error.|`PT5M`|
|`druid.indexer.runner.minWorkerVersion`|The minimum Middle Manager version to
send tasks to. The version number is a string. This affects the expected
behavior during certain operations like comparison against
`druid.worker.version`. Specifically, the version comparison follows dictionary
order. Use ISO8601 date format for the version to accommodate date comparisons.
|"0"|
| `druid.indexer.runner.parallelIndexTaskSlotRatio`| The ratio of task slots
available for parallel indexing supervisor tasks per worker. The specified
value must be in the range `[0, 1]`. |1|
+|`druid.indexer.runner.taskSlotLimits`|A map where each key is a task type
(`String`), and the corresponding value represents the absolute limit on the
number of task slots that tasks of this type can occupy on a worker. The value
is an `Integer` that is greater than or equal to 0. For example, a value of 5
means that tasks of this type can occupy up to 5 task slots on a worker. If
both absolute and ratio limits are specified for the same task type, the
effective limit will be the smaller of the absolute limit and the limit derived
from the corresponding ratio. `taskSlotLimits = {"index_parallel": 3,
"query_controller": 5}`. In this example, parallel indexing tasks can occupy up
to 3 task slots, and query controllers can occupy up to 5 task slots.|Empty map|
Review Comment:
Absolute limits removed
--
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]