fixes typo in setting DLQ

This commit is contained in:
Raja Kolli
2023-08-26 22:31:04 +05:30
committed by Soby Chacko
parent 3f4365156e
commit 3c2b91291c

View File

@@ -380,7 +380,7 @@ For more control over topic offsets, see <<rebalance-listener>>; when a listener
==== Consuming Batches
Starting with version 3.0, when `spring.cloud.stream.binding.<name>.consumer.batch-mode` is set to `true`, all of the records received by polling the Kafka `Consumer` will be presented as a `List<?>` to the listener method.
Starting with version 3.0, when `spring.cloud.stream.bindings.<name>.consumer.batch-mode` is set to `true`, all of the records received by polling the Kafka `Consumer` will be presented as a `List<?>` to the listener method.
Otherwise, the method will be called with one record at a time.
The size of the batch is controlled by Kafka consumer properties `max.poll.records`, `fetch.min.bytes`, `fetch.max.wait.ms`; refer to the Kafka documentation for more information.