From c27dfc176d845fd3178cb57551282a8451a52e3f Mon Sep 17 00:00:00 2001 From: Ben Kirwin Date: Fri, 17 Jan 2025 16:22:33 -0500 Subject: [PATCH] Follow through on requested batch deletes by default Enabled widely by default with zero consequences so far. --- src/persist-client/src/batch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/persist-client/src/batch.rs b/src/persist-client/src/batch.rs index 41693a1b6983b..01b31cc1aa496 100644 --- a/src/persist-client/src/batch.rs +++ b/src/persist-client/src/batch.rs @@ -367,7 +367,7 @@ pub struct BatchBuilderConfig { // TODO: Remove this once we're comfortable that there aren't any bugs. pub(crate) const BATCH_DELETE_ENABLED: Config = Config::new( "persist_batch_delete_enabled", - false, + true, "Whether to actually delete blobs when batch delete is called (Materialize).", );