Vlad Balmos
Vlad Balmos

Reputation: 3412

Cassandra keyspace clone within a cluster

I've managed to clone a keyspace on a single node test machine by using the snapshot feature of the nodetool. By clone, I mean same keyspace data with a different name: original: Keyspace1, new: Keyspace2.

If I do the same procedure one a single node within a cluster, will the new keyspace be replicated to all the other nodes? or must I run the procedure on all the nodes within the cluster?

Upvotes: 1

Views: 430

Answers (1)

Tupshin Harper
Tupshin Harper

Reputation: 1297

The new keyspace schema would be replicated, but you won't have all of your data unless you perform the same operation on all nodes.

Upvotes: 1

Related Questions