kevinrr888 commented on code in PR #5576: URL: https://github.com/apache/accumulo/pull/5576#discussion_r2109882016
########## server/manager/src/main/java/org/apache/accumulo/manager/Manager.java: ########## @@ -1265,14 +1265,21 @@ public void run() { context.getTableManager().addObserver(this); - Thread statusThread = Threads.createThread("Status Thread", new StatusThread()); + // TODO KEVIN RATHBUN updating the Manager state seems like a critical function. However, the + // thread already handles, waits, and continues in the case of any Exception, so critical or + // non critical doesn't make a difference here. + Thread statusThread = Threads.createCriticalThread("Status Thread", new StatusThread()); statusThread.start(); - Threads.createThread("Migration Cleanup Thread", new MigrationCleanupThread()).start(); + // TODO KEVIN RATHBUN migration cleanup may be a critical function of the manager, but the + // thread will already handle, wait, and continue in the case of any Exception, so critical + // or non critical doesn't make a difference here. + Threads.createCriticalThread("Migration Cleanup Thread", new MigrationCleanupThread()).start(); tserverSet.startListeningForTabletServerChanges(); - Threads.createThread("ScanServer Cleanup Thread", new ScanServerZKCleaner()).start(); + // TODO KEVIN RATHBUN Some ZK cleanup doesn't seem like a critical function of manager + Threads.createNonCriticalThread("ScanServer Cleanup Thread", new ScanServerZKCleaner()).start(); Review Comment: Addressed in 2c4ce6bc57b166a2a57eb61c11df5b2bb8da76b8 -- 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