-
Notifications
You must be signed in to change notification settings - Fork 793
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RocksDB] Modify some table/column family settings #2938
Merged
wezrule
merged 17 commits into
nanocurrency:develop
from
wezrule:rocksdb_plaintable_unchecked
Sep 25, 2020
Merged
[RocksDB] Modify some table/column family settings #2938
wezrule
merged 17 commits into
nanocurrency:develop
from
wezrule:rocksdb_plaintable_unchecked
Sep 25, 2020
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wezrule
changed the title
[RocksDB] Use plaintable and Hash skiplist memtable for unchecked
[RocksDB] Modify some table/column family settings
Sep 15, 2020
wezrule
force-pushed
the
rocksdb_plaintable_unchecked
branch
from
September 17, 2020 13:22
831709d
to
3eb9b59
Compare
argakiig
previously approved these changes
Sep 21, 2020
guilhermelawless
added
database
Relates to lmdb or rocksdb
quality improvements
This item indicates the need for or supplies changes that improve maintainability
performance
Performance/resource utilization improvement
labels
Sep 24, 2020
guilhermelawless
approved these changes
Sep 24, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
database
Relates to lmdb or rocksdb
performance
Performance/resource utilization improvement
quality improvements
This item indicates the need for or supplies changes that improve maintainability
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.
Lowering pending table number of sst files to 2 in level 0 (same as unchecked) as it can also have large number of deletes.
Adding
memtable_whole_key_filtering
, and some other settings to improve unchecked_get performance when there is a lot of deletions. Increasingmemtable_prefix_bloom_size_ratio
.Tried
max_subcompactions
with io_threads/2, didn't see improvement in performance.Noticed
unchecked_cleanup
was failing with earlier changes and wanted to disable theongoing_unchecked_cleanup
as it was interfering with the test.