How does consistency level relate to secondary index? If e.g. querying with QUORUM in a secondary index query with no limit? Cassandra internal: First query all nodes local indexes and then with result (partitions) from local index query, use QUORUM to get the indexed partitions data?
And that's why the following statement is true?:
Q: "How does choice of Consistency Level affect cluster availability when using secondary indexes?"
A: "Because secondary indexes are distributed, you must have CL nodes available for ALL token ranges in the cluster in order to complete a query. For example, with RF = 3, when two out of three consecutive nodes in the ring are unavailable, all secondary index queries at CL = QUORUM will fail, however secondary index queries at CL = ONE will succeed. This is true regardless of cluster size."