ddanielr commented on code in PR #4148:
URL: https://github.com/apache/accumulo/pull/4148#discussion_r1449021853
##########
server/compaction-coordinator/src/main/java/org/apache/accumulo/coordinator/CompactionFinalizer.java:
##########
@@ -128,7 +128,8 @@ private void notifyTserver(Location loc,
ExternalCompactionFinalState ecfs) {
ecfs.getExternalCompactionId().canonical(),
ecfs.getExtent().toThrift(),
ecfs.getFileSize(), ecfs.getEntries());
} else if (ecfs.getFinalState() == FinalState.FAILED) {
- LOG.debug("Notifying tserver {} that compaction {} has failed.", loc,
ecfs);
+ LOG.debug("Notifying tserver {} that compaction {} with {} has
failed.", loc, ecfs,
+ ecfs.getExternalCompactionId());
Review Comment:
move ID to right after `compaction` in log message
```suggestion
LOG.debug("Notifying tserver {} that compaction {} with {} has
failed.", loc, cfs.getExternalCompactionId(),
ecfs);
```
--
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]