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 d2c88db857 Adds back in log message changes from 4689 (#4729)
d2c88db857 is described below
commit d2c88db857db3b5e1e321466fba65b8a44aff223
Author: Daniel Roberts <[email protected]>
AuthorDate: Mon Jul 8 14:40:03 2024 -0400
Adds back in log message changes from 4689 (#4729)
Adds back the two log messages that were removed when merging #4592
---
.../apache/accumulo/core/spi/balancer/HostRegexTableLoadBalancer.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/core/src/main/java/org/apache/accumulo/core/spi/balancer/HostRegexTableLoadBalancer.java
b/core/src/main/java/org/apache/accumulo/core/spi/balancer/HostRegexTableLoadBalancer.java
index 040a9bc49f..0b89e5d4dd 100644
---
a/core/src/main/java/org/apache/accumulo/core/spi/balancer/HostRegexTableLoadBalancer.java
+++
b/core/src/main/java/org/apache/accumulo/core/spi/balancer/HostRegexTableLoadBalancer.java
@@ -533,7 +533,8 @@ public class HostRegexTableLoadBalancer extends
TableLoadBalancer {
migrationsFromLastPass.put(migration.getTablet(), migration);
}
- LOG.info("Migrating tablets for balance: {}", migrationsOut);
+ LOG.info("Migrating {} tablets for balance.", migrationsOut.size());
+ LOG.debug("Tablets currently migrating: {}", migrationsOut);
return minBalanceTime;
}