Fwd: Re: local read from coordinator

2020-11-14 Thread onmstester onmstester
using https://www.zoho.com/mail/ Forwarded message From: onmstester onmstester To: "user" Date: Sat, 14 Nov 2020 08:24:14 +0330 Subject: Re: local read from coordinator Forwarded message Thank you Jeff, I disabled dynami

Re: local read from coordinator

2020-11-13 Thread onmstester onmstester
to:alex...@gmail.com> To: "user"<mailto:user@cassandra.apache.org> Date: Wed, 11 Nov 2020 11:28:56 +0330 Subject: Re: local read from coordinator Forwarded message token-aware policy doesn't work for token range queries (at least in the Java driv

RE: local read from coordinator

2020-11-11 Thread Durity, Sean R
I appreciate the update to my understanding of the read path! Thanks, Jeff. Sean Durity From: Jeff Jirsa Sent: Wednesday, November 11, 2020 10:33 AM To: cassandra Subject: [EXTERNAL] Re: local read from coordinator What you describe is true for writes but not reads. The read only gets sent

Re: local read from coordinator

2020-11-11 Thread Alex Ott
only with no other connections to >> other nodes! >> >> Sent using Zoho Mail <https://www.zoho.com/mail/> >> >> >> >> ======== Forwarded message >> From: Alex Ott >> To: "user" >> Date: Wed, 11 Nov 2020 11:28:56

Re: local read from coordinator

2020-11-11 Thread Jeff Jirsa
inator)? And the first one that is able to respond wins (for > LOCAL_ONE). That was my understanding. > > > > Sean Durity > > > > *From:* Jeff Jirsa > *Sent:* Wednesday, November 11, 2020 9:24 AM > *To:* user@cassandra.apache.org > *Subject:* [EXTERNAL] Re: local re

RE: local read from coordinator

2020-11-11 Thread Durity, Sean R
: [EXTERNAL] Re: local read from coordinator This isn’t necessarily true and cassandra has no coordinator-only consistency level to force this behavior (The snitch is going to pick the best option for local_one reads and any compactions or latency deviations from load will make it likely that

Re: local read from coordinator

2020-11-11 Thread Jeff Jirsa
=== >> From: Alex Ott >> To: "user" >> Date: Wed, 11 Nov 2020 11:28:56 +0330 >> Subject: Re: local read from coordinator >> Forwarded message >> >> token-aware policy doesn't work for token range queries (at

Re: Re: local read from coordinator

2020-11-11 Thread Alex Ott
dinator only with no other connections to > other nodes! > > Sent using Zoho Mail <https://www.zoho.com/mail/> > > > > Forwarded message > From: Alex Ott > To: "user" > Date: Wed, 11 Nov 2020 11:28:56 +0330 > Subject

Fwd: Re: local read from coordinator

2020-11-11 Thread onmstester onmstester
user" Date: Wed, 11 Nov 2020 11:28:56 +0330 Subject: Re: local read from coordinator Forwarded message token-aware policy doesn't work for token range queries (at least in the Java driver 3.x).  You need to force the driver to do the reading using a specific to

Re: local read from coordinator

2020-11-10 Thread Alex Ott
token-aware policy doesn't work for token range queries (at least in the Java driver 3.x). You need to force the driver to do the reading using a specific token as a routing key. Here is Java implementation of the token range scanning algorithm that Spark uses: https://github.com/alexott/cassandr

Re: local read from coordinator

2020-11-10 Thread Erick Ramirez
Yes, use a token-aware policy so the driver will pick a coordinator where the token (partition) exists. Cheers!