Skip to content

Commit

Permalink
Merge pull request #1943 from alecgrieser/01942-unroll-by-default
Browse files Browse the repository at this point in the history
Resolves #1942: Make unrolled deletes the default record delete behavior
  • Loading branch information
MMcM committed Dec 9, 2022
2 parents 57365ad + b24c60b commit d7a2687
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/ReleaseNotes.md
Expand Up @@ -24,7 +24,7 @@ The Guava dependency version has been updated to 31.1. Projects may need to chec
* **Performance** Improvement 2 [(Issue #NNN)](https://github.com/FoundationDB/fdb-record-layer/issues/NNN)
* **Performance** Improvement 3 [(Issue #NNN)](https://github.com/FoundationDB/fdb-record-layer/issues/NNN)
* **Performance** Improvement 4 [(Issue #NNN)](https://github.com/FoundationDB/fdb-record-layer/issues/NNN)
* **Performance** Improvement 5 [(Issue #NNN)](https://github.com/FoundationDB/fdb-record-layer/issues/NNN)
* **Performance** Unrolled record deletes (introduced in [3.3.309.0](#333090) are now on by default [(Issue #1942)](https://github.com/FoundationDB/fdb-record-layer/issues/1942)
* **Feature** Feature 1 [(Issue #NNN)](https://github.com/FoundationDB/fdb-record-layer/issues/NNN)
* **Feature** Feature 2 [(Issue #NNN)](https://github.com/FoundationDB/fdb-record-layer/issues/NNN)
* **Feature** Feature 3 [(Issue #NNN)](https://github.com/FoundationDB/fdb-record-layer/issues/NNN)
Expand Down
Expand Up @@ -42,7 +42,7 @@ public final class FDBRecordStoreProperties {
* more efficient if the underlying FDB storage engine can more efficiently handle single-key clears.
*/
public static final RecordLayerPropertyKey<Boolean> UNROLL_SINGLE_RECORD_DELETES = RecordLayerPropertyKey.booleanPropertyKey(
"com.apple.foundationdb.record.recordstore.unroll_single_record_deletes", false);
"com.apple.foundationdb.record.recordstore.unroll_single_record_deletes", true);

private FDBRecordStoreProperties() {
throw new RecordCoreException("should not instantiate class of static prop");
Expand Down

0 comments on commit d7a2687

Please sign in to comment.