-
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
Remove deprecated option DBOptions::max_mem_compaction_level #9446
Remove deprecated option DBOptions::max_mem_compaction_level #9446
Conversation
@bjlemaire has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks.
options/cf_options.cc
Outdated
{"max_mem_compaction_level", | ||
{0, OptionType::kInt, OptionVerificationType::kDeprecated, | ||
OptionTypeFlags::kNone}}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to keep this to be able to read old OPTIONS files.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, thanks.
@bjlemaire has updated the pull request. You must reimport the pull request before landing. |
1a6635b
to
ce9409c
Compare
@bjlemaire has updated the pull request. You must reimport the pull request before landing. |
1 similar comment
@bjlemaire has updated the pull request. You must reimport the pull request before landing. |
@bjlemaire has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
ec0d34e
to
3d3026b
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 Meta employee, you can view this diff on Phabricator. |
3d3026b
to
7ad4119
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 Meta employee, you can view this diff on Phabricator. |
7ad4119
to
141ee45
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 Meta employee, you can view this diff on Phabricator. |
141ee45
to
d117d30
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 Meta 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 Meta 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 Meta employee, you can view this diff on Phabricator. |
…e for legacy OPTIONS file read support.
c7d43e1
to
51bb77f
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 Meta employee, you can view this diff on Phabricator. |
In RocksDB, this option was already marked as "NOT SUPPORTED" for a long time, and setting this option does not have any effect on the behavior of RocksDB library. Therefore, we are removing it in the preparations of the upcoming 7.0 release.