oupfevph
oupfevph

Reputation: 103

How to merge two Cassandra cluster into one?

I have two Cassandra clusters, cluster 1 has one keyspace called 'Keyspace1', and cluster 2 has one keyspace called 'Keyspace2'. I want to merge two cluster into one.

How can I do that?

Upvotes: 3

Views: 1123

Answers (1)

samarth
samarth

Reputation: 4024

If the cluster in which you are going to hold the data has sufficient space then one of the options could be to stream sstable's data and index files to that cluster using sstable-loader.

For more information see Cassandra Bulk Loader

Upvotes: 3

Related Questions