Hi
To migrate from Cassandra to Scylla without downtime you need to:
1. Start writing each request to both DBs (Cassandra and Scylla)
2. Migrate the data from the Cassandra sstable to Scylla(forklifting). You need to flush befoe migrating sstable.
If you start 1 before 2, no data should be lost in the process.
For step one above, you can either update your application to do a double write, or you I can grant you access to a beta tool, CQLProxy, as part of the scylla-enterprise project. CQLProxy basically doubles each write request for you.
For the second part, you can use SSTableLoader, a tool which read SSTable and feeds them as CQL requests to Scylla.
Both tools, as well as a third tool which validate the two DBs are in sync are not part of Scylla 1.5, but as mentioned available as a closed beta. If you are interested, please let me know, I will be happy to share more info.
Regards
Tzach