I\'ve searched for previous versions of this question, but none seem to fit my case. I have an existing Cassandra cluster running 2.0.x. I\'ve been allocated new VMs, so I d
Don't worry about the migration. You can simply migrate your Cassandra 2.0.X cluster to Cassandra 3.0.X. But its better if you migrate your cluster Cassandra 2.0.X to latest Cassandra 2.X.X then Cassandra 3.0.X. You need to follow some steps-
As you are doing migration, you need to be careful about your data always. For the data backup and restore you can follow two ways-
.cql
file and copy all the tables to .csv
and then after installing the new version of cassandra, source your schema from .cql
and copy all the tables from every single .csv
file.If you are fully convinced how you will complete the migration then you can write a bash script to complete the backup and restore steps.