This is an automated email from the ASF dual-hosted git repository. dlmarion pushed a change to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
from ef213b520b replaces sorted map w/ list for key vals in tablet metadata (#4600) add 221259e12e Log message when Tablet has been unloading for over 15 minutes (#4558) new aada55ef50 Merge branch '2.1' 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: core/pom.xml | 16 ++ .../accumulo/core/logging/ConditionalLogger.java | 194 +++++++++++++++++++++ .../core/logging/DeduplicatingLoggerTest.java | 69 ++++++++ .../core/logging/EscalatingLoggerTest.java | 77 ++++++++ .../accumulo/manager/TabletGroupWatcher.java | 11 +- .../accumulo/tserver/UnloadTabletHandler.java | 1 - .../org/apache/accumulo/tserver/tablet/Tablet.java | 22 ++- 7 files changed, 385 insertions(+), 5 deletions(-) create mode 100644 core/src/main/java/org/apache/accumulo/core/logging/ConditionalLogger.java create mode 100644 core/src/test/java/org/apache/accumulo/core/logging/DeduplicatingLoggerTest.java create mode 100644 core/src/test/java/org/apache/accumulo/core/logging/EscalatingLoggerTest.java