This is an automated email from the ASF dual-hosted git repository. ddanielr pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push: new d811807bf1 Switch property default state to enabled (#3918) d811807bf1 is described below commit d811807bf1f6ce4f78cfb6237c995cedb6650038 Author: Daniel Roberts <ddani...@gmail.com> AuthorDate: Mon Nov 13 10:29:35 2023 -0500 Switch property default state to enabled (#3918) Enable the in-use candidate deletion behavior by default. --- core/src/main/java/org/apache/accumulo/core/conf/Property.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/apache/accumulo/core/conf/Property.java b/core/src/main/java/org/apache/accumulo/core/conf/Property.java index 58be89df05..7ba0c7bbb3 100644 --- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java +++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java @@ -755,7 +755,7 @@ public enum Property { GC_DELETE_THREADS("gc.threads.delete", "16", PropertyType.COUNT, "The number of threads used to delete RFiles and write-ahead logs.", "1.3.5"), @Experimental - GC_REMOVE_IN_USE_CANDIDATES("gc.remove.in.use.candidates", "false", PropertyType.BOOLEAN, + GC_REMOVE_IN_USE_CANDIDATES("gc.remove.in.use.candidates", "true", PropertyType.BOOLEAN, "GC will remove deletion candidates that are in-use from the metadata location. " + "This is expected to increase the speed of subsequent GC runs.", "2.1.3"),