[ 
https://issues.apache.org/jira/browse/CASSANDRA-13880?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16171476#comment-16171476
 ] 

Aleksey Yeschenko commented on CASSANDRA-13880:
-----------------------------------------------

Thanks.

CircleCI run for [3.0|https://circleci.com/gh/iamaleksey/cassandra/34] has a 
bunch of annoying MV timeout issues again, and 
[dtests|https://builds.apache.org/view/A-D/view/Cassandra/job/Cassandra-devbranch-dtest/326/testReport/]
 have those annoying git clone issues, again, but everything seems alright 
otherwise.

Committed to 3.0 as 
[35e32f20ba8cba6cbfb1bee4252c0edd8684cdb1|https://github.com/apache/cassandra/commit/35e32f20ba8cba6cbfb1bee4252c0edd8684cdb1]
 and merged with 3.11 and trunk. Dtest committed as 
[163f82c2db0e86d4dd8f312b291ccd094891b986|https://github.com/apache/cassandra-dtest/commit/163f82c2db0e86d4dd8f312b291ccd094891b986].

> Fix short read protection for tables with no clustering columns
> ---------------------------------------------------------------
>
>                 Key: CASSANDRA-13880
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-13880
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Coordination
>            Reporter: Aleksey Yeschenko
>            Assignee: Aleksey Yeschenko
>             Fix For: 3.0.15, 3.11.1
>
>
> CASSANDRA-12872 fixed counting replica rows, so that we do now fetch more 
> than one extra row if necessary.
> Fixing the issue caused consistency_test.py:TestConsistency.test_13747 to 
> start failing, by exposing a bug in the way we handle empty clusterings.
> When {{moreContents()}} asks for another row and {{lastClustering}} is 
> {{EMPTY}}, the response again (and again) contains the row with {{EMPTY}} 
> clustering.
> SRP assumes it’s a new row, counts it as one, gets confused and keeps asking 
> for more, in a loop, again and again.
> Arguably, a response to a read command with the following non-inclusive 
> {{ClusteringIndexFilter}}:
> {code}
> command.clusteringIndexFilter(partitionKey).forPaging(metadata.comparator, 
> Clustering.EMPTY, false);
> {code}
> ... should return nothing at all rather than a row with an empty clustering.
> Also arguably, SRP should not even attempt to fetch more rows if 
> {{lastClustering == Clustering.EMPTY}}. In a partition key only column
> we shouldn’t expect any more rows.
> This JIRA is to fix the latter issue on SRP side - to modify SRP logic to 
> short-circuit execution if {{lastClustering}} was an {{EMPTY}} one instead of 
> querying pointlessly for non-existent extra rows.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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

Reply via email to