maksaska commented on code in PR #11497:
URL: https://github.com/apache/ignite/pull/11497#discussion_r1976394991


##########
docs/_docs/extensions-and-integrations/change-data-capture-extensions.adoc:
##########
@@ -60,6 +60,34 @@ 
image:../../assets/images/integrations/CDC-ignite2igniteClient.svg[]
 | `MappingsCount` | Count of mappings events applied to destination cluster
 |===
 
+=== Configuration example
+
+Add 
link:https://github.com/apache/ignite-extensions/blob/master/modules/cdc-ext/src/main/java/org/apache/ignite/cdc/thin/IgniteToIgniteClientCdcStreamer.java[Ignite2IgniteClientCdcStreamer]
 bean configuration to the source ignite configuration.
+
+```xml
+<bean id="cdc.streamer" 
class="org.apache.ignite.cdc.thin.IgniteToIgniteClientCdcStreamer">
+    <property name="destinationClientConfiguration">
+        <bean class="org.apache.ignite.configuration.ClientConfiguration">
+            <property name="addresses" value="127.0.0.1:10800" />
+        </bean>
+    </property>
+
+    <property name="caches">
+        <list>
+            <value>cache1</value>
+            <value>cache2</value>
+        </list>
+    </property>
+
+    <property name="onlyPrimary" value="false"/>
+    <property name="maxBatchSize" value="1024"/>
+</bean>
+```
+
+NOTE: Use the resulting configuation with `ignite-cdc.sh` to start CDC client 
on the source Ignite instance.
+
+NOTE: Make sure both source and destination clusters are up.

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

Reply via email to