-
Notifications
You must be signed in to change notification settings - Fork 6.4k
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
Add experimental_allow_mempurge flag to benchmark. #8546
Conversation
@bjlemaire has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
@bjlemaire has updated the pull request. You must reimport the pull request before landing. |
@bjlemaire has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
@bjlemaire has updated the pull request. You must reimport the pull request before landing. |
@bjlemaire has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
8da01ee
to
efd86f0
Compare
@bjlemaire has updated the pull request. You must reimport the pull request before landing. |
@bjlemaire has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
@bjlemaire merged this pull request in f4529a5. |
Summary: Tiny PR to add the `experimental_allow_mempurge` to the `db_bench` tool (`Mempurge` is the current prototype for memtable garbage collection). This is useful to benchmark the prototype of this new feature, stress test it and help find new meaningful heuristics for GC. By default, the flag to allow `mempurge` is set to `false`. Pull Request resolved: facebook#8546 Reviewed By: anand1976 Differential Revision: D29738338 Pulled By: bjlemaire fbshipit-source-id: 01892883a2f1c714c110718674da05992d6e2dd6
Tiny PR to add the
experimental_allow_mempurge
to thedb_bench
tool (Mempurge
is the current prototype for memtable garbage collection).This is useful to benchmark the prototype of this new feature, stress test it and help find new meaningful heuristics for GC.
By default, the flag to allow
mempurge
is set tofalse
.