You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GH-4194: Correcting errors in the docs for Share Consumer deliver counts. (#4195)
Fixes#4194
Previous documentation referenced a configuration parameter as being exposed via the Kafka Admin API. This is NOT the case, as the `share.group.delivery.attempt.limit` is NOT a valid share group configuration. As such, it is not available via the Admin API. Also, the correct value of `share.group.delivery.count.limit` is a broker-level configuraion. This cannot be overriden at the consumer group level.
Signed-off-by: Sandon Jacobs <sandon.jacobs@gmail.com>
Copy file name to clipboardExpand all lines: spring-kafka-docs/src/main/antora/modules/ROOT/pages/kafka/kafka-queues.adoc
+5-29Lines changed: 5 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -674,51 +674,27 @@ Every time a record is acquired by a consumer in a share group, the broker incre
674
674
The first acquisition sets the delivery count to 1, and each subsequent acquisition increments it.
675
675
When the delivery count reaches the configured limit (default: 5), the record moves to **Archived** state and is not eligible for additional delivery attempts.
676
676
677
-
=== Configuration
678
-
679
-
The maximum delivery attempts can be configured per share group using the Admin API:
0 commit comments