I want to export all data from a keyspace in a cassandra cluster and import it into another cluster, that has the same schema but the keyspace is differently named.
I’ve looked into the sstable2json /json2sstable utility. However, I don’t want to go to each node and deal with each individual sstable.
If you don’t want to export the data node by node, then you probably need to use the normal Thrift client interface to systematically read chunks of data from the source cluster and write them to the destination, working through all columnfamilies and their rows. This may be relatively slow though.