This is an automated email from the ASF dual-hosted git repository. kturner pushed a change to branch elasticity in repository https://gitbox.apache.org/repos/asf/accumulo.git
from b1aa1f58ba Remove getTabletHostingGoal method from TableOperations (#3681) add 293e304945 Validate that classloader context is valid when property is set (#3678) add b6add6cac3 Prevent setting deprecated properties in the shell unless forced (#3680) add 333e94604d Revert "Validate that classloader context is valid when property is set (#3678)" add adcb2d8ac7 Validate that classloader context when property is set (#3683) add 92af41860e run minor compaction earlier in tablet close (#3685) add e3e4c26e65 Attempt to prevent half-closed Tablet due to failing minc (#3677) add fca29a9f85 Merge branch '2.1' new f106b8c212 Merge branch 'main' into elasticity The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../accumulo/core/classloader/ClassLoaderUtil.java | 19 ++ .../core/conf/ConfigurationTypeHelper.java | 2 +- .../core/spi/common/ContextClassLoaderFactory.java | 4 +- .../accumulo/server/conf/TableConfiguration.java | 8 + .../org/apache/accumulo/server/util/PropUtil.java | 15 +- .../accumulo/server/util/SystemPropUtil.java | 19 +- .../tserver/tablet/MinorCompactionTask.java | 9 +- .../org/apache/accumulo/tserver/tablet/Tablet.java | 75 ++++-- .../accumulo/shell/commands/ConfigCommand.java | 31 ++- .../test/functional/HalfClosedTablet2IT.java | 121 +++++++++ .../test/functional/HalfClosedTabletIT.java | 282 +++++++++++++++++++++ .../org/apache/accumulo/test/shell/ShellIT.java | 16 +- .../apache/accumulo/test/shell/ShellServerIT.java | 79 ++++++ 13 files changed, 638 insertions(+), 42 deletions(-) create mode 100644 test/src/main/java/org/apache/accumulo/test/functional/HalfClosedTablet2IT.java create mode 100644 test/src/main/java/org/apache/accumulo/test/functional/HalfClosedTabletIT.java