keith-turner opened a new pull request, #5707: URL: https://github.com/apache/accumulo/pull/5707
Ran into an issue when running random walk bulk test where a compaction that needed to happen was never running. The code fixed in this PR used to change the state to running and then forget about it in some cases. However [this code][1] would still remember it. That would cause this [this code][2] to filter out planned jobs when there were running compactions in submitted jobs. Hopefully this change will cause [this code][3] to filter this from submitted jobs. Ran all Compaction ITs w/ this change and they passed. [1]:https://github.com/apache/accumulo/blob/5bba2f3cf36717d0e2fabbf4abb93c3455c0619e/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/CompactionService.java#L84 [2]:https://github.com/apache/accumulo/blob/5bba2f3cf36717d0e2fabbf4abb93c3455c0619e/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/CompactionService.java#L186 [3]:https://github.com/apache/accumulo/blob/5bba2f3cf36717d0e2fabbf4abb93c3455c0619e/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/CompactionService.java#L359-L365 -- 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