Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to completely clear down, reset and restart a Cassandra cluster?

I have an old Cassandra cluster that needs to be brought back into life. I would like to clear out all the user and system data, all stored tokens, everything and start from a clean slate - is there a recommended way of doing this?

like image 882
jimmy_terra Avatar asked Jul 13 '15 07:07

jimmy_terra


1 Answers

Here's the procedure I use for Apache Cassandra:

First stop Cassandra on all the nodes, then on each node:

rm -r <the commitlog_directory specified in cassandra.yaml>
rm -r <the data_file_directories specified in cassandra.yaml>
rm <the contents of the saved_caches_directory specified in cassandra.yaml>
rm <old logfiles in /var/log/cassandra/>

Then restart the Cassandra service on the nodes one by one, starting with the seed nodes first. As you start them, run nodetool status to make sure they come up into state UN (Up Normal).

like image 128
Jim Meyer Avatar answered Sep 21 '22 18:09

Jim Meyer