lechero
lechero

Reputation: 83

Safety copy of an Apache Cassandra database

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

Answers (2)

palacsint
palacsint

Reputation: 28865

The COPY command also could help: Simple data importing and exporting with Cassandra

Upvotes: 0

DNA
DNA

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

Related Questions