Re: nodetool repair failure

2017-07-30 Thread Jeff Jirsa


On 2017-07-27 21:36 (-0700), Mitch Gitman  wrote: 
> Now, the particular symptom to which that response refers is not what I was
> seeing, but the response got me thinking that perhaps the failures I was
> getting were on account of attempting to run "nodetool repair
> --partitioner-range" simultaneously on all the nodes in my cluster. These
> are only three-node dev clusters, and what I would see is that the repair
> would pass on one node but fail on the other two.


Running nodetool repair --partitioner-range simultaneously on all nodes in the 
cluster will indeed be a problem, and the symptoms will vary widely based on 
node state / write load / compaction load. This is one of the times when the 
right answer is "don't do that" until the project comes up with a way to 
prevent you from doing it in order to protect you from yourself.




-
To unsubscribe, e-mail: user-unsubscr...@cassandra.apache.org
For additional commands, e-mail: user-h...@cassandra.apache.org



Re: Starting cassandra Service with Binary Disabled.

2017-07-30 Thread Pranay akula
Thanks Jeff

On Jul 30, 2017 11:22 PM, "Jeff Jirsa"  wrote:

> start_native_transport: false
>
>
> --
> Jeff Jirsa
>
>
> > On Jul 30, 2017, at 7:14 PM, Pranay akula 
> wrote:
> >
> > Hi,
> >
> > It is possible to disable binary in configuration when re-starting
> cassandra service, instead of disabling it using nodetool once the node is
> up.
> >
> >
> >
> > Thanks
> > Pranay.
>
> -
> To unsubscribe, e-mail: user-unsubscr...@cassandra.apache.org
> For additional commands, e-mail: user-h...@cassandra.apache.org
>
>


Re: Starting cassandra Service with Binary Disabled.

2017-07-30 Thread Jeff Jirsa
start_native_transport: false


-- 
Jeff Jirsa


> On Jul 30, 2017, at 7:14 PM, Pranay akula  wrote:
> 
> Hi,
> 
> It is possible to disable binary in configuration when re-starting cassandra 
> service, instead of disabling it using nodetool once the node is up.
> 
> 
> 
> Thanks
> Pranay.

-
To unsubscribe, e-mail: user-unsubscr...@cassandra.apache.org
For additional commands, e-mail: user-h...@cassandra.apache.org



Starting cassandra Service with Binary Disabled.

2017-07-30 Thread Pranay akula
Hi,

It is possible to disable binary in configuration when re-starting
cassandra service, instead of disabling it using nodetool once the node is
up.



Thanks
Pranay.


Re: nodetool repair failure

2017-07-30 Thread kurt greaves
You need check the node that failed validation to find the relevant error.
The IP should be in the logs of the node you started repair on.

You shouldn't run multiple repairs on the same table from multiple nodes
unless you really know what you're doing and not using vnodes. The failure
you are likely seeing is that multiple repairs are trying to occur on the
same SSTable, which will cause the repair to fail.