-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
storage: enable usage of RocksDB DeleteRange by default #14391
storage: enable usage of RocksDB DeleteRange by default #14391
Conversation
The |
It doesn't look like we've been running with this enabled on the test clusters either (at least not in the currently checked-in configs). Should we try setting that environment variable on a few clusters before making it the default? |
Hmm, we were running this on |
Added support for DeleteRange to DBBatchInserter. This missing support was causing test failures and various data corruption when enabling COCKROACH_ENABLE_FAST_CLEAR_RANGE after cockroachdb#14138 started using ApplyBatchRepr on batches containing DeleteRange operations. See cockroachdb#14391
Figured out the test failure (see #14416). We should definitely enable |
Added support for DeleteRange to DBBatchInserter. This missing support was causing test failures and various data corruption when enabling COCKROACH_ENABLE_FAST_CLEAR_RANGE after cockroachdb#14138 started using ApplyBatchRepr on batches containing DeleteRange operations. See cockroachdb#14391
b7f6a21
to
8fbb75b
Compare
8fbb75b
to
842bde1
Compare
|
This change is