kfaraz commented on code in PR #13144: URL: https://github.com/apache/druid/pull/13144#discussion_r991245678
########## docs/configuration/index.md: ########## @@ -1152,6 +1152,7 @@ There are additional configs for autoscaling (if it is enabled): |`druid.supervisor.taskUnhealthinessThreshold`|The number of consecutive task failures before the supervisor is considered unhealthy.|3| |`druid.supervisor.storeStackTrace`|Whether full stack traces of supervisor exceptions should be stored and returned by the supervisor `/status` endpoint.|false| |`druid.supervisor.maxStoredExceptionEvents`|The maximum number of exception events that can be returned through the supervisor `/status` endpoint.|`max(healthinessThreshold, unhealthinessThreshold)`| +|`druid.supervisor.enableIdleBehaviour`|If enabled, Supervisor can become idle if there is no data on input stream/topic for some time. This time can be configured via `awaitStreamInactiveMillis`. It can also be turned off per Supervisor.|false| Review Comment: ```suggestion |`druid.supervisor.enableIdleBehaviour`|If enabled, a supervisor can become idle and stop creating new tasks if there has been no new data on the input stream for a specified period of time.|false| ``` Also add a separate entry for `awaitStreamInactiveMillis`. -- 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]
