-
Notifications
You must be signed in to change notification settings - Fork 53
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
feat(host): Use RocksDB
as the disk K/V store
#471
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files☔ View full report in Codecov by Sentry. |
885866a
to
7bd2763
Compare
7bd2763
to
9e853ba
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files☔ View full report in Codecov by Sentry. |
Overview
Updates the disk K/V store to use
rocksdb
. The old method was extremely inefficient on iops and compression. While the disk-backed K/V store isn't really in the hot path, having a more compression-friendly format is very convenient for testing.