This is an automated email from the ASF dual-hosted git repository. dlmarion pushed a change to branch 1451-external-compactions-feature in repository https://gitbox.apache.org/repos/asf/accumulo.git.
from 214aeaf fix findbugs add 9b50412 Return a Dispatch object from Dispatchers (#1961) add f4a1123 Make MiniAccumuloCluster AutoCloseable (#1959) add a77edef closes #1955 - move log message new e967402 Merge branch 'main' into 1451-external-compactions-feature 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: .../file/blockfile/impl/ScanCacheProvider.java | 8 +-- ...tionDirectives.java => CompactionDispatch.java} | 10 +-- ...Builder.java => CompactionDispatchBuilder.java} | 12 ++-- ...ctivesImpl.java => CompactionDispatchImpl.java} | 6 +- .../core/spi/compaction/CompactionDispatcher.java | 2 +- .../spi/compaction/SimpleCompactionDispatcher.java | 22 +++---- ...canDirectives.java => DefaultScanDispatch.java} | 17 +++-- .../{ScanDirectives.java => ScanDispatch.java} | 12 ++-- ...anDirectivesImpl.java => ScanDispatchImpl.java} | 12 ++-- .../accumulo/core/spi/scan/ScanDispatcher.java | 8 +-- .../core/spi/scan/SimpleScanDispatcher.java | 52 ++++++++-------- .../apache/accumulo/fate/zookeeper/ZooLock.java | 3 +- .../core/spi/scan/SimpleScanDispatcherTest.java | 14 ++--- .../accumulo/minicluster/MiniAccumuloCluster.java | 15 ++++- .../accumulo/minicluster/MiniAccumuloConfig.java | 15 +++++ .../MiniAccumuloClusterExistingZooKeepersTest.java | 72 +++++++--------------- .../tserver/TabletServerResourceManager.java | 14 ++--- .../accumulo/tserver/scan/ScanParameters.java | 12 ++-- .../accumulo/tserver/tablet/CompactableImpl.java | 4 +- .../accumulo/tserver/tablet/ScanDataSource.java | 3 +- .../org/apache/accumulo/tserver/tablet/Tablet.java | 4 +- 21 files changed, 159 insertions(+), 158 deletions(-) rename core/src/main/java/org/apache/accumulo/core/spi/compaction/{CompactionDirectives.java => CompactionDispatch.java} (85%) rename core/src/main/java/org/apache/accumulo/core/spi/compaction/{CompactionDirectivesBuilder.java => CompactionDispatchBuilder.java} (77%) rename core/src/main/java/org/apache/accumulo/core/spi/compaction/{CompactionDirectivesImpl.java => CompactionDispatchImpl.java} (88%) rename core/src/main/java/org/apache/accumulo/core/spi/scan/{DefaultScanDirectives.java => DefaultScanDispatch.java} (73%) rename core/src/main/java/org/apache/accumulo/core/spi/scan/{ScanDirectives.java => ScanDispatch.java} (91%) rename core/src/main/java/org/apache/accumulo/core/spi/scan/{ScanDirectivesImpl.java => ScanDispatchImpl.java} (89%)