Reputation: 83
How can I create a safety copy (dump) from Cassandra. Is available any tool like mysqldump
?
Maybe there is a way to make something like an ISO image from database?
Upvotes: 4
Views: 1184
Reputation: 28865
The COPY
command also could help: Simple data importing and exporting with Cassandra
Upvotes: 0
Reputation: 42607
See http://wiki.apache.org/cassandra/Operations#Backing_up_data
You can use snapshots, or export the data to JSON format.
Upvotes: 3