From 3c2b91291ccef9d89ce4aa66ba0ae94df6a9b06b Mon Sep 17 00:00:00 2001 From: Raja Kolli Date: Sat, 26 Aug 2023 22:31:04 +0530 Subject: [PATCH] fixes typo in setting DLQ --- docs/src/main/asciidoc/kafka/kafka_overview.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/kafka/kafka_overview.adoc b/docs/src/main/asciidoc/kafka/kafka_overview.adoc index fba71214c..efc3a0105 100644 --- a/docs/src/main/asciidoc/kafka/kafka_overview.adoc +++ b/docs/src/main/asciidoc/kafka/kafka_overview.adoc @@ -380,7 +380,7 @@ For more control over topic offsets, see <>; when a listener ==== Consuming Batches -Starting with version 3.0, when `spring.cloud.stream.binding..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..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.