Reputation: 80
I just have one reason to restart cluster below :
All the nodes have the same hardware configuration 1. When i update file cassandra.yaml
Are there other reasons ?
Upvotes: 2
Views: 666
Reputation: 762
The thing you are asking for is Rolling Restart a cassandra cluster
. There are so many reason to restart a cassandra cluster
. I'm just mentioning some below-
cassandra.yaml
. (As you mentioned above) nodetool
got stucked somehow. such as- you gave command nodetool repair
and cancelled the command but it got stucked behind, then you won't be able to give another nodetool repair
command.stream_failed
due to nproc
limit. That time your running cluster nodes could be down to this issue and going to hold the status.sstableloader
and you need to restore your data from snapshots
. That time you need to provide your snapshots
to the data_directory
on each node and rolling restart.cassandra_version
.Upvotes: 2