Question-40: Please order the following in the form of read path for Cassandra?
- Check partition key cache
- Check Row Cache
- Locate the data on disk using compression offset map
- Fetch the data from SSTables on disk
- Go directly to the compression offset map if a partition key is found in the partition key cache.
- Check memtable.
- Check Bloom filter.
- 1,2,3,4,5,6,7
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering Python Certification Material
Ans: B
Exp: You should always keep in mind that first it will check the memtables and last one would be SSTables on disk this would help in reducing the given choices. Below are the order which would be followed when data needs to be read from the Cassandra table.