ddanielr commented on code in PR #5980:
URL: https://github.com/apache/accumulo/pull/5980#discussion_r2538934217
##########
server/manager/src/main/java/org/apache/accumulo/manager/TabletGroupWatcher.java:
##########
@@ -1065,10 +1065,12 @@ private void handleDeadTablets(TabletLists tLists,
WalStateManager wals)
var deadLogs = tLists.logsForDeadServers;
if (!deadTablets.isEmpty()) {
- int maxServersToShow = min(deadTablets.size(), 100);
- Manager.log.debug("{} assigned to dead servers: {}...",
deadTablets.size(),
- deadTablets.subList(0, maxServersToShow));
- Manager.log.debug("logs for dead servers: {}", deadLogs);
+ Manager.log.debug("{} tablets assigned to dead servers",
deadTablets.size());
+ if (Manager.log.isTraceEnabled()) {
+ Manager.log.trace("logs for dead servers: {}", deadLogs);
Review Comment:
That would be better than the current blob of dead log names that get
printed.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]