Skip to content

Commit dc7f357

Browse files
committed
add tip for auto replicate
1 parent 374e64a commit dc7f357

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

articles/managed-instance-apache-cassandra/configure-hybrid-cluster.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,24 @@ python3 client_configurator.py --subscription-id <subcriptionId> --cluster-resou
8585
*It then prompts user to restart Cassandra.
8686
:::image type="content" source="./media/configure-hybrid-cluster/script-result.png" alt-text="Screenshot of the result of running the script.":::
8787

88-
* Once Cassandra has finished restarting on all nodes, check `nodetool status`. Both datacenters should appear in the list, with their nodes in the UN (Up/Normal) state.
88+
* Once Cassandra is done restarting on all nodes, check `nodetool status`. Both datacenters should appear in the list, with their nodes in the UN (Up/Normal) state.
8989

9090
* From your Azure Managed Instance for Apache Cassandra, you can then select `AllKeyspaces` to change the replication settings in your Keyspace schema and start the migration process to Cassandra Managed Instance cluster.
9191

9292
:::image type="content" source="./media/create-cluster-portal/cluster-version.png" alt-text="Screenshot of selecting all key spaces." lightbox="./media/create-cluster-portal/cluster-version.png" border="true":::
9393

94+
> [!TIP]
95+
> Auto-Replicate setting should be enabled via an arm template.
96+
> The arm template should include:
97+
> ```json
98+
> "properties":{
99+
> ...
100+
> "externalDataCenters": ["dc-name-1","dc-name-2"],
101+
> "autoReplicate": "AllKeyspaces",
102+
> ...
103+
> }
104+
> ```
105+
94106
> [!WARNING]
95107
> This will change all your keyspaces definition to include
96108
> `WITH REPLICATION = { 'class' : 'NetworkTopologyStrategy', 'on-prem-datacenter-1' : 3, 'mi-datacenter-1': 3 }`.
@@ -101,6 +113,9 @@ python3 client_configurator.py --subscription-id <subcriptionId> --cluster-resou
101113
102114
:::image type="content" source="./media/configure-hybrid-cluster/replication-progress.png" alt-text="Screenshot showing replication progress." lightbox="./media/configure-hybrid-cluster/replication-progress.png" border="true":::
103115
116+
> [!INFO]
117+
>
118+
104119
## Next steps
105120
106121
In this quickstart, you learned how to create a hybrid cluster using Azure Managed Instance for Apache Cassandra Client Configurator. You can now start working with the cluster.

0 commit comments

Comments
 (0)