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 3aaa3dee75 Update logging to give information without overwhelming
logs (#4689)
3aaa3dee75 is described below
commit 3aaa3dee75e859078ffaba2261753f998ca1e225
Author: alerman <[email protected]>
AuthorDate: Fri Jun 21 21:11:54 2024 -0400
Update logging to give information without overwhelming logs (#4689)
---
.../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 bba5cbfd0d..fd64c88f39 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
@@ -526,7 +526,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;
}