You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@cassandra.apache.org by Eunsu Kim <eu...@gmail.com> on 2021/03/26 02:42:56 UTC

remove dead node without streaming

Hi all,

Is it possible to remove dead node directly from the cluster without streaming?

My Cassandra cluster is quite large and takes too long to stream. (nodetool removenode)

It's okay if my data is temporarily inconsistent.

Thanks in advance.

Re: remove dead node without streaming

Posted by Jeff Jirsa <jj...@gmail.com>.
It is strictly unsafe and you shouldn’t do it but “nodetool assassinate” does what you’re asking (you may leave data behind that you won’t be able to read again later)

You’d be better off adding a new host on top of the old one (replace address)

> On Mar 25, 2021, at 7:43 PM, Eunsu Kim <eu...@gmail.com> wrote:
> 
> 
> Hi all,
> 
> Is it possible to remove dead node directly from the cluster without streaming?
> 
> My Cassandra cluster is quite large and takes too long to stream. (nodetool removenode)
> 
> It's okay if my data is temporarily inconsistent.
> 
> Thanks in advance.