317brian commented on code in PR #18165:
URL: https://github.com/apache/druid/pull/18165#discussion_r2178277811


##########
docs/ingestion/supervisor.md:
##########
@@ -64,6 +64,7 @@ For configuration properties specific to Kafka and Kinesis, 
see [Kafka I/O confi
 |`lateMessageRejectionStartDateTime`|ISO 8601 date time|Configures tasks to 
reject messages with timestamps earlier than this date time. For example, if 
this property is set to `2016-01-01T11:00Z` and the supervisor creates a task 
at `2016-01-01T12:00Z`, Druid drops messages with timestamps earlier than 
`2016-01-01T11:00Z`. This can prevent concurrency issues if your data stream 
has late messages and you have multiple pipelines that need to operate on the 
same segments, such as a realtime and a nightly batch ingestion pipeline.|No||
 |`lateMessageRejectionPeriod`|ISO 8601 period|Configures tasks to reject 
messages with timestamps earlier than this period before the task was created. 
For example, if this property is set to `PT1H` and the supervisor creates a 
task at `2016-01-01T12:00Z`, Druid drops messages with timestamps earlier than 
`2016-01-01T11:00Z`. This may help prevent concurrency issues if your data 
stream has late messages and you have multiple pipelines that need to operate 
on the same segments, such as a streaming and a nightly batch ingestion 
pipeline. You can specify only one of the late message rejection 
properties.|No||
 |`earlyMessageRejectionPeriod`|ISO 8601 period|Configures tasks to reject 
messages with timestamps later than this period after the task reached its task 
duration. For example, if this property is set to `PT1H`, the task duration is 
set to `PT1H` and the supervisor creates a task at `2016-01-01T12:00Z`, Druid 
drops messages with timestamps later than `2016-01-01T14:00Z`. Tasks sometimes 
run past their task duration, such as in cases of supervisor failover.|No||
+|`stopTaskCount`|Integer|Limits the number of ingestion tasks Druid can cycle 
at any given time. If not set, Druid can cycle all tasks at the same time. If 
set to a value less than `taskCount` your cluster needs fewer available slots 
to run the supervisor, so you can save costs by scaling down your ingestion 
tier in exchange for slower cycle time and possible lag. See 
[stopTaskCount](#stoptaskcount) for more information.|No|`taskCount` value|

Review Comment:
   ```suggestion
   |`stopTaskCount`|Integer|Limits the number of ingestion tasks Druid can 
cycle at any given time. If not set, Druid can cycle all tasks at the same 
time. If set to a value less than `taskCount`, your cluster needs fewer 
available slots to run the supervisor. You can save costs by scaling down your 
ingestion tier, but this can lead to slower cycle times and lag. See 
[stopTaskCount](#stoptaskcount) for more information.|No|`taskCount` value|
   ```



##########
docs/ingestion/supervisor.md:
##########
@@ -64,6 +64,7 @@ For configuration properties specific to Kafka and Kinesis, 
see [Kafka I/O confi
 |`lateMessageRejectionStartDateTime`|ISO 8601 date time|Configures tasks to 
reject messages with timestamps earlier than this date time. For example, if 
this property is set to `2016-01-01T11:00Z` and the supervisor creates a task 
at `2016-01-01T12:00Z`, Druid drops messages with timestamps earlier than 
`2016-01-01T11:00Z`. This can prevent concurrency issues if your data stream 
has late messages and you have multiple pipelines that need to operate on the 
same segments, such as a realtime and a nightly batch ingestion pipeline.|No||
 |`lateMessageRejectionPeriod`|ISO 8601 period|Configures tasks to reject 
messages with timestamps earlier than this period before the task was created. 
For example, if this property is set to `PT1H` and the supervisor creates a 
task at `2016-01-01T12:00Z`, Druid drops messages with timestamps earlier than 
`2016-01-01T11:00Z`. This may help prevent concurrency issues if your data 
stream has late messages and you have multiple pipelines that need to operate 
on the same segments, such as a streaming and a nightly batch ingestion 
pipeline. You can specify only one of the late message rejection 
properties.|No||
 |`earlyMessageRejectionPeriod`|ISO 8601 period|Configures tasks to reject 
messages with timestamps later than this period after the task reached its task 
duration. For example, if this property is set to `PT1H`, the task duration is 
set to `PT1H` and the supervisor creates a task at `2016-01-01T12:00Z`, Druid 
drops messages with timestamps later than `2016-01-01T14:00Z`. Tasks sometimes 
run past their task duration, such as in cases of supervisor failover.|No||
+|`stopTaskCount`|Integer|Limits the number of ingestion tasks Druid can cycle 
at any given time. If not set, Druid can cycle all tasks at the same time. If 
set to a value less than `taskCount` your cluster needs fewer available slots 
to run the supervisor, so you can save costs by scaling down your ingestion 
tier in exchange for slower cycle time and possible lag. See 
[stopTaskCount](#stoptaskcount) for more information.|No|`taskCount` value|

Review Comment:
   Missing comma also a small nit  that makes the negative much more explicit



-- 
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