performance: tuning rocksdb bloom filter #4191
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What problem does this PR solve?
We previously used a global lru cache as rocksdb cache (default 128M) and setting the
cache_index_and_filter_blocks
parameter to true, the rocksdb'sIndexBlock
is placed in the cache also (note, we did not useFilterBlock
in current code). With the increasing of stored data,DataBlock
andIndexBlock
will compete for cache expiration, there will be more cache misses, resulting in read performance degradation.rocksdb statistics log
What is changed and how it works?
This PR tries to adjust the cache configuration, and also uses a bloom filter to improve the performance of prefix seek.
through the mainnet synchronization test, the overall performance has been improved by about 6%.
and memory usage has also decreased
Check List
Tests
Release note