nat
nat

Reputation: 1

Cassandra multi dc setup using two separate OSE clusters

We have two separate ose clusters one in cmc and another in emc.

OSE cluster - AA in CMC OSE cluster - BB in EMC

Installed one Cassandra cluster on AA in cmc - Nodes can talk among each other in CMC cluster.

Installed second Cassandra cluster on BB in emc - Nodes can talk among each other in EMC cluster. Both Cassandra nodes from AA in CMC cannot talk to BB in EMC.

Any help will be appreciated. Thanks

Upvotes: 0

Views: 46

Answers (1)

Alex Ott
Alex Ott

Reputation: 87119

You need to specify addresses accessible from other DCs as broadcast_address (doc) and set listen_on_broadcast to true. Then you need to add the nodes from other DC into list of seed nodes, so they will know each other.

Don't forget about networking - if you listen on public IP, then other could access your servers - use firewall, enable SSL, etc.

P.S. Search for instructions on setting up multi-region cluster in AWS or Azure, and follow instructions (except selecting the snitch)

Upvotes: 2

Related Questions