The question is pretty simple, as i want to know how cassandra reads inside the partition? Does it loads the whole partition in memory from disk?
What will be the effect if the partition size is very big?
Is the complexity of reading data in partition is O(Log(N)) in partition (where N being the total number of rows in partition) as it uses the sorted map?
SCENARIO :
Lets say there are 100000 rows identified by unique clustering keys per partition. So if i provide both partition key and clustering key in fetch query so, will it load the complete partition into memory in order to traverse through all the clustering keys to find the row specified?