From 2f5e7079070b1375aa17894d6aad3c2a98139f3c Mon Sep 17 00:00:00 2001 From: Michael Morisi Date: Tue, 11 Jun 2024 13:57:41 -0400 Subject: [PATCH] Merge pull request #164 from mcmorisi/DOCSP-38228-debezium-cdc --- source/includes/fundamentals/cdc/debezium.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source/includes/fundamentals/cdc/debezium.rst b/source/includes/fundamentals/cdc/debezium.rst index 8edbd88a..7f02f377 100644 --- a/source/includes/fundamentals/cdc/debezium.rst +++ b/source/includes/fundamentals/cdc/debezium.rst @@ -25,7 +25,12 @@ CDC events from each of the preceding datastores: database= collection= topics= - change.data.capture.handler=com.mongodb.kafka.connect.sink.cdc.debezium.mongodb.MongoDbHandler + change.data.capture.handler=com.mongodb.kafka.connect.sink.cdc.debezium.mongodb.ChangeStreamHandler + + .. note:: + + If you are using a Debezium CDC version earlier than 2.0, set the value of the + ``change.data.capture.handler`` property to ``com.mongodb.kafka.connect.sink.cdc.debezium.mongodb.MongoDbHandler``. To view the source code for the Debezium CDC handler, see :github:`the {+connector+} source code `.