You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, PebblesDB uses a lot of memory for the TableCache (caching metadata) and for the bloom filters used for each sstable.
We want to add a command line option for PebblesDB which would limit the total amount of memory used by PebblesDB for the TableCache and bloom filters.
When using the specified amount of memory, preference should be given first to the table cache, and then bloom filters for upper levels (level 0, level 1).
The text was updated successfully, but these errors were encountered:
As far as I understand, Pebbles is used as a embedded library in other programs. Configurations are passed by using Options object. Therefor I'm not sure what's the command line option for? Do you mean a configuration passed to the Options object, or a CLI option when compiling Pebbles, or something else?
Right now, PebblesDB uses a lot of memory for the TableCache (caching metadata) and for the bloom filters used for each sstable.
We want to add a command line option for PebblesDB which would limit the total amount of memory used by PebblesDB for the TableCache and bloom filters.
When using the specified amount of memory, preference should be given first to the table cache, and then bloom filters for upper levels (level 0, level 1).
The text was updated successfully, but these errors were encountered: