Skip to content

Commit 0c2a181

Browse files
Maksim Davydovmaksaska
authored andcommitted
* updated doc
1 parent 8df1d5b commit 0c2a181

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/_docs/extensions-and-integrations/change-data-capture-extensions.adoc

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ Basically, you can combine them any way you want to meet your project goals.
563563

564564
=== CDC example manager
565565

566-
`ignite-cdc-ext` ships with CDC example manager `cdc-start-up.sh` alongside `kafka-to-ignite.sh`
566+
`ignite-cdc-ext` ships with CDC example manager `cdc-start-up.sh` alongside `kafka-to-ignite.sh`. You can find it under '../examples/config/cdc-start-up/' directory.
567567

568568
You can use this script to start all kinds of replication strategies without any additional configuration.
569569

@@ -590,8 +590,8 @@ There are currently 2 examples for 2 clusters, that you can run sumalteniously.
590590
NOTE: All properties files are preconfigured to work out of the box.
591591

592592
```
593-
./cdc-start-up.sh --ignite ../examples/config/cdc-start-up/cluster-1
594-
./cdc-start-up.sh --ignite ../examples/config/cdc-start-up/cluster-2
593+
./cdc-start-up.sh --ignite cluster-1
594+
./cdc-start-up.sh --ignite cluster-2
595595
```
596596

597597
* Start CDC clients with specified properties:
@@ -606,19 +606,19 @@ NOTE: Start both clusters (as in previous example with Ignite nodes) before star
606606

607607
Here is an example on how to start Active-Passive inter-cluster communication with 2 separate nodes and one thin CDC client for Ignite-to-Ignite replication from cluster 1 to cluster 2 (Run the commands independently):
608608
```
609-
./cdc-start-up.sh --ignite ../examples/config/cdc-start-up/cluster-1
610-
./cdc-start-up.sh --ignite ../examples/config/cdc-start-up/cluster-2
611-
./cdc-start-up.sh --cdc-client --ignite-to-ignite-thin --activate-cluster ../examples/config/cdc-start-up/cluster-1
609+
./cdc-start-up.sh --ignite cluster-1
610+
./cdc-start-up.sh --ignite cluster-2
611+
./cdc-start-up.sh --cdc-client --ignite-to-ignite-thin --activate-cluster cluster-1
612612
```
613613

614614
NOTE: Make sure clusters fully started up before starting CDC client.
615615

616616
Here is an example on how to start Active-Active inter-cluster communication with 2 separate nodes and 2 CDC clients (thick) for Ignite-to-Ignite replication (Run the commands independently):
617617
```
618-
./cdc-start-up.sh --ignite ../examples/config/cdc-start-up/cluster-1
619-
./cdc-start-up.sh --ignite ../examples/config/cdc-start-up/cluster-2
620-
./cdc-start-up.sh --cdc-client --ignite-to-ignite --activate-cluster ../examples/config/cdc-start-up/cluster-1
621-
./cdc-start-up.sh --cdc-client --ignite-to-ignite ../examples/config/cdc-start-up/cluster-2
618+
./cdc-start-up.sh --ignite cluster-1
619+
./cdc-start-up.sh --ignite cluster-2
620+
./cdc-start-up.sh --cdc-client --ignite-to-ignite --activate-cluster cluster-1
621+
./cdc-start-up.sh --cdc-client --ignite-to-ignite cluster-2
622622
```
623623

624624
NOTE: To start CDC with Kafka you need to start topics beforehand.
@@ -641,10 +641,10 @@ We use the following topics naming for our examples:
641641

642642
Here is an example on how to start Active-Passive inter-cluster communication with 2 separate nodes and 2 CDC clients for replication with Kafka from cluster 1 to cluster 2 (Run the commands independently):
643643
```
644-
./cdc-start-up.sh --ignite ../examples/config/cdc-start-up/cluster-1
645-
./cdc-start-up.sh --ignite ../examples/config/cdc-start-up/cluster-2
646-
./cdc-start-up.sh --cdc-client --ignite-to-kafka --activate-cluster ../examples/config/cdc-start-up/cluster-1
647-
./cdc-start-up.sh --cdc-client --kafka-to-ignite-thin ../examples/config/cdc-start-up/cluster-2
644+
./cdc-start-up.sh --ignite cluster-1
645+
./cdc-start-up.sh --ignite cluster-2
646+
./cdc-start-up.sh --cdc-client --ignite-to-kafka --activate-cluster cluster-1
647+
./cdc-start-up.sh --cdc-client --kafka-to-ignite-thin cluster-2
648648
```
649649

650650
* You can check CDC replication with `--check-cdc`. Use it in parallel with Active-Passive/Active-Active replication. To start CDC check for proposed entry:

0 commit comments

Comments
 (0)