Reputation: 23
I want to take the backup of a keyspace in cassandra, Using command.
Upvotes: 0
Views: 398
Reputation: 2216
Use the nodetool
command. Something like:
nodetool -h localhost -p 7199 snapshot mykeyspace
Take a look at the documentation here: http://docs.datastax.com/en/cassandra/2.0/cassandra/operations/ops_backup_restore_c.html
Upvotes: 2