Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cassandra Chunk Cache

I cannot find good documentation regarding 'Chunk Cache' in Cassandra.

I see some stats in 'nodetool info' but I cannot find reference online.

Could someone explain how this cache works and how (if possible) to configure it?

Thanks!

like image 230
RJtokenring Avatar asked Dec 28 '16 15:12

RJtokenring


1 Answers

It is a cache of chunks of SSTables for speeding up read operations. You configure this by changing file_cache_size_in_mb in cassandra.yaml. You can read more about the implementation in CASSANDRA-5863

like image 138
Alla B Avatar answered Nov 20 '22 11:11

Alla B