ctubbsii commented on code in PR #5576: URL: https://github.com/apache/accumulo/pull/5576#discussion_r2103836540
########## core/src/main/java/org/apache/accumulo/core/clientImpl/ThriftTransportPool.java: ########## @@ -73,7 +73,8 @@ public class ThriftTransportPool { private ThriftTransportPool(LongSupplier maxAgeMillis) { this.maxAgeMillis = maxAgeMillis; - this.checkThread = Threads.createThread("Thrift Connection Pool Checker", () -> { + // TODO KEVIN RATHBUN all this does is perform some resource cleanup, so may not be critical. + this.checkThread = Threads.createNonCriticalThread("Thrift Connection Pool Checker", () -> { Review Comment: Critical or not isn't really about "importance". It's about whether the system is resilient enough to re-kick the operation later. Even if this just cleans up resources, it would be "critical" in this sense if the system never tried to monitor or restart this thread if it were to die. -- 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