如何完全清除,重置和重启Cassandra集群?

时间:2015-07-13 07:40:57

标签: cassandra datastax-enterprise

我有一个旧的Cassandra集群需要恢复生机。我想清除所有用户和系统数据,所有存储的令牌,所有内容并从一个干净的平板开始 - 有推荐的方法吗?

1 个答案:

答案 0 :(得分:12)

这是我用于Apache Cassandra的程序:

首先在所有节点上停止Cassandra,然后在每个节点上停止:

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/>

然后逐个重新启动节点上的Cassandra服务,首先从种子节点开始。在启动它们时,运行nodetool status以确保它们进入UN状态(Up Normal)。