maksaska commented on code in PR #11497: URL: https://github.com/apache/ignite/pull/11497#discussion_r1976395241
########## docs/_docs/extensions-and-integrations/change-data-capture-extensions.adoc: ########## @@ -339,3 +553,132 @@ Configuration is done via Ignite node plugin: </bean> </property> ``` + +== Common CDC strategies + +There are basically two strategies to choose from when it comes to CDC replication with Apache Ignite, and a handful of options to configure the transport for the data. + +* Strategies include `Active-Passive` and `Active-Active` replication regimes. You can read it as 'from one cluster to another only' and 'from one cluster to another and vice versa'. + +The former strategy implies that only one cluster would be actively used for data consumption from the outside user application, while the other one consumes data through CDC. + +The latter approach allows users to use both cluster simultaneously, meanwhile the CDC clients transfer the updates between them. For that strategy to work, the user should configure conflict resolver. + +* To make things work you have two independent tools to configure: + +** Thin/Thick clients for connection to destination clusters - responsible for 'put' operations on the destination cluster. + +** Ignite/Kafka driven middleman data transport - You can pass data through Kafka topics, or you can use Ignite out of the box solution. + +Basically, you can combine them any way you want to meet your project goals. + +=== CDC example manager Review Comment: Done! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org