Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Drop all keyspaces in cassandra

How to drop all keyspace in cassandra, I have requirement where I have to delete all keyspaces created by some test scripts.

Thanks

like image 765
Rahul Rohilla Avatar asked Dec 26 '13 12:12

Rahul Rohilla


1 Answers

Are you looking for a method other than drop keyspace?

Okay based on your clarification...

I would say the best way to reset cassandra would be to delete the contents of the <data dir>/data/* <data dir>/commitlog/* <data dir>/saved_caches/*

and then restart the services on the nodes beginning with the seed node and continuing with a 2 minute gap between each node start. That will take the nodes back to a clean state with respect to the data but leave the customizations in cassandra.yaml intact. This would also reset any changes made to the "system" keyspaces at the cqlsh level such as changing a replication factor.

like image 197
dkblinux98 Avatar answered Sep 20 '22 06:09

dkblinux98