sklaha opened a new pull request, #151: URL: https://github.com/apache/cassandra-analytics/pull/151
### Description There’s a logic in the bulk reader that organizes replicas for a token range based on their availability. The sorting order is determined by the status of the node. This arrangement ensures that the bulk reader reads SS tables from available replicas first. If the requested consistency level is achieved by simply reading SS tables from the available replicas, the bulk reader skips reading from the unavailable replicas. However, due to a bug in the code, the bulk reader operates contrary to its intended purpose. Consequently, it attempts to read SS tables from the unavailable replicas first before successfully reading from the available replicas. This PR fixes this issue and adds a unit test. -- 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]
