keith-turner commented on code in PR #5391: URL: https://github.com/apache/accumulo/pull/5391#discussion_r1986109708
########## server/gc/src/main/java/org/apache/accumulo/gc/GCRun.java: ########## @@ -368,6 +379,11 @@ public void deleteConfirmedCandidates(SortedMap<String,GcCandidate> confirmedDel }; deleteThreadPool.execute(deleteTask); + if (timer.hasElapsed(Duration.ofMinutes(1))) { + log.info("Batch {} deleting file {} of {}", batchCount.get(), deleteCounter, Review Comment: One way to avoid having to get the executors thread pool would be to have delete task increment an atomic integer as they run in the pool. -- 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: notifications-unsubscr...@accumulo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org