GitHub user git-hulk added a comment to the discussion: How to limit RAM usage
@rizkymma @hosting2000me We have multiple column families in Kvrocks, so you could reduce the write buffer number if you would like to control the memory usage: - rocksdb.write_buffer_size 64 - rocksdb.max_write_buffer_number 4 You could reduce `rocksdb.max_write_buffer_number` to `2` and `rocksdb.write_buffer_size` to `32` is your value size is small. GitHub link: https://github.com/apache/kvrocks/discussions/2767#discussioncomment-12670963 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
