Leaf Rotten
Leaf Rotten

Reputation: 51

How to remove the cassandra node from failuredetector

I used the nodetool decommission command to remove a node from the cassandra cluster. Then I used the nodetool status command to see that the node was successfully removed, but using the nodetool failuredetector command, I can see that the removed node is still in the Endpoint and the value of Phi Continue to increase. How do I remove the node from the failuredetector?

Upvotes: 1

Views: 288

Answers (1)

Aaron
Aaron

Reputation: 57748

It's likely that the node is still in gossip, or it could be left over in one of the nodes' system.peers table. Running a nodetool assassinate on that node should fully-remove it.

nodetool assassinate <IP_ADDRESS>

Upvotes: 1

Related Questions