@addison
To get a database dump with data from a Cassandra database, you can use the nodetool
utility that comes with Apache Cassandra. Here's how you can do it:
1
|
nodetool snapshot -t <snapshot_name> <keyspace_name> |
Replace <snapshot_name>
with the name you want to give to your snapshot and <keyspace_name>
with the name of the keyspace you want to take a snapshot of.
By following these steps, you can create a database dump with data from your Cassandra database using the nodetool
utility.