SStablewriter for python cassandra

Is there a python option for SStable scripts for cassandra? I found many java examples,

http://amilaparanawithana.blogspot.com/2012/06/bulk-loading-external-data-to-cassandra.html

Is this something else that is being considered?

+4
source share
1 answer

SSTableLoader ( https://github.com/apache/cassandra/blob/trunk/bin/sstableloader ) is a utility implemented inside Cassandra. The command line in the shell invoking the BulkLoader class. Cassandra was built with Java, so all the tools that come with it use the Java code that comes with Cassandra. I don't think anyone would be interested in changing their mind about Cassandra in Python.

0
source

Source: https://habr.com/ru/post/1525314/


All Articles