Question on this setting:
[lookup]
max_memtable_bytes =
* Maximum size of static lookup file to use an in-memory index for.
* Defaults to 10000000 in bytes (10MB)
**Lookup files with size above max_memtable_bytes will be indexed on disk**
==>If my lookup tables are ~5MB in size and I set this to 3MB , and thusly indexed to disk, and I'm using SSD, will I get faster lookup queries or slower?
* A large value results in loading large lookup files in memory leading to bigger process memory footprint.
* Caution must be exercised when setting this parameter to arbitrarily high values!
↧