Reputation: 139
In cassandra sstables are stored on disk and memtable are in cache so is there is 100% conversion from sstable to memtable i.e. if 10 GB of sstable is there then will it required 10 GB of ram ?
Upvotes: 0
Views: 420
Reputation: 1621
No that is not true. For better understanding check memtable related cassandra configuration, for example : memtable_heap_space_in_mb – This is the total allocated space for allmemtables on an Apache Cassandranode. By default, this is one-fourth your heap size.
Also read about write and read path of cassandra.
Upvotes: 1