Hi Team
We are using Cassandra 3.0 community version. We have requirement to stop replication of particular key space between DC.
For example :-
dc200
CREATE KEYSPACE test WITH replication = {'class': 'NetworkTopologyStrategy', 'dc100': '0', 'dc200': '3'} AND durable_writes = true;
dc100
CREATE KEYSPACE test WITH replication = {'class': 'NetworkTopologyStrategy', 'dc100': '3', 'dc200': '0'} AND durable_writes = true;
So that tables on this keyspace will not replicate between each site.
But I am not able to do it because once the keyspace created in one DC , is getting replicated to another intrinsically
Is there anway to get it work with out creating separate keyspace name.