From acc53af8baa645dafe5ba95e3f449312cf1bb5df Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Fri, 26 Apr 2019 11:03:12 -0400 Subject: [PATCH] Doc Polishing --- src/reference/asciidoc/kafka.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/reference/asciidoc/kafka.adoc b/src/reference/asciidoc/kafka.adoc index 0335a3d5..f7ab2152 100644 --- a/src/reference/asciidoc/kafka.adoc +++ b/src/reference/asciidoc/kafka.adoc @@ -852,6 +852,9 @@ The metrics are grouped into the `Map` by the `cli Several options are provided for committing offsets. If the `enable.auto.commit` consumer property is `true`, Kafka auto-commits the offsets according to its configuration. If it is `false`, the containers support several `AckMode` settings (described in the next list). +The default `AckMode` is `BATCH`. +Starting with version 2.3, the framework sets `enable.auto.commit` to `false` unless explicitly set in the configuration. +Previously, the Kafka default (`true`) was used if the property was not set. The consumer `poll()` method returns one or more `ConsumerRecords`. The `MessageListener` is called for each record.