Thanks Bryan,
I don't want to use the sstable as it will increase the load on Cassandra .
I directly want to use the data file created using the CQLSSTablewriter for
migrating to Mysql.
Abhishek Aggarwal
*Senior Software Engineer*
*M*: +91 8861212073 , 8588840304
*T*: 0124 6600600 *EXT*: 12128
A
You have SSTables and you want to get importable data?
You could use a tool like sstabletojson to get json formatted data directly
from the sstables; however, unless they've been perfectly compacted, there
will be duplicates and updates interleaved that will be properly ordered.
If this is a full
Hi ,
We have the data dump into directory taken from Mysql using the
CQLSSTableWriter.
Our requirement is to read this data and load it into MySql. We don't want
to use Cassandra as it will lead to read traffic and this operation is just
for some validation .
Can anyone help us with the solutio