From ae4abe4f337b94266de980ee1326c774a5781a5c Mon Sep 17 00:00:00 2001 From: Inigo <50qbits@gmail.com> Date: Tue, 29 Dec 2020 15:14:52 +0100 Subject: [PATCH] fix property name in consuming batches --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 826c7a9fb..919b2fd27 100644 --- a/README.adoc +++ b/README.adoc @@ -333,7 +333,7 @@ Default: none. ==== 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`, `min.fetch.bytes`, `fetch.max.wait.ms`; refer to the Kafka documentation for more information.