-
Notifications
You must be signed in to change notification settings - Fork 71
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
Import range query improvements #13
Comments
to use the spdb range query builder you need to set use_spdb_query_builder to true |
We need a |
Currently some of the unit tests are failing. We want to show a scenario with improvement first before we commit to fixing them. |
test plan is as follows:
fillup cmd:
1st seek cmd:
results:1st13:___ 250.735 micros/op 39880 ops/sec; (375342 of 3604999 found) 2ndsame as 1st seek cmd with modifications --threads=2 -duration=1800 3rdsame as 1st seek cmd with modifications --num=4500000000(30X fillup num) -open_files=27000 4rthrepetition of 3rd 5thanother rep of 3rd 6thanother rep but 1hr duration 7thanother rep but 10hr duration with --perf_level=5 --statistics=1 perf results:13 performance.xlsx next stepfurther discussion is required regarding these results |
Should only be relevant for Hybrid compaction. |
Why:
Seek is a commonly used operation with rocksdb. Improving it can significantly improve the overall performance of the application.
improve short seek performance with large amount of levels that don’t have much overlap
What :
Improve the creation of range filters to hold less irrelevant items and reducing the seek times
The text was updated successfully, but these errors were encountered: