This is an automated email from the ASF dual-hosted git repository.
ddanielr pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/2.1 by this push:
new 7fbd9277b5 Enables reloading the iterator compression opt (#5963)
7fbd9277b5 is described below
commit 7fbd9277b55311daaf5874ef2e821e238abd76e8
Author: Daniel Roberts <[email protected]>
AuthorDate: Fri Nov 7 08:25:23 2025 -0500
Enables reloading the iterator compression opt (#5963)
Adds the ability to reload the iterator opts compression algo setting
without bouncing the servers.
---
core/src/main/java/org/apache/accumulo/core/conf/Property.java | 1 +
1 file changed, 1 insertion(+)
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 61addfa80a..4bece1faf1 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
@@ -2082,6 +2082,7 @@ public enum Property {
|| key.startsWith(Property.GENERAL_ARBITRARY_PROP_PREFIX.getKey())
||
key.equals(Property.GENERAL_FILE_NAME_ALLOCATION_BATCH_SIZE_MIN.getKey())
||
key.equals(Property.GENERAL_FILE_NAME_ALLOCATION_BATCH_SIZE_MAX.getKey())
+ ||
key.startsWith(Property.GENERAL_SERVER_ITERATOR_OPTIONS_COMPRESSION_ALGO.getKey())
|| key.startsWith(VFS_CONTEXT_CLASSPATH_PROPERTY.getKey())
|| key.startsWith(REPLICATION_PREFIX.getKey());
}