mike-tr-adamson commented on code in PR #2673:
URL: https://github.com/apache/cassandra/pull/2673#discussion_r1334295986
##########
src/java/org/apache/cassandra/service/reads/DataResolver.java:
##########
@@ -135,6 +135,9 @@ private boolean needsReplicaFilteringProtection()
if (command.rowFilter().isEmpty())
return false;
+ if (command.isTopK())
+ return false;
Review Comment:
Thanks for this analysis.
I feel that, for this initial implementation, we should restrict the queries
to CL=ONE. Should we allow CL=LOCAL_ONE as well? I'll raise a separate ticket
to see how we can improve this.
I'll also add a separate dtest to cover this situation as you have shown
above.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]