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

前端 未结 1 1352
粉色の甜心
粉色の甜心 2021-02-08 15:02

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 c

相关标签:
1条回答
  • 2021-02-08 15:25

    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).

    0 讨论(0)
提交回复
热议问题