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
We use pebble as a backend storage of our service, but when large random read comes(invokded by db.Get()), the pebble will alloc large amount of memory cause the process OOM. we would wonder know if there have some options to control the memory usage.
we traced the heap memory using by pebble, large memory alloced from the cache.newValue() in readBlock function.
BTW,we have set the max size of cache to 3GB, and block size be set to 16KB.