Manno15 opened a new issue #2239: URL: https://github.com/apache/accumulo/issues/2239
**Describe the bug** Found this bug while reviewing PR https://github.com/apache/accumulo-testing/pull/149. The CompactionPLanner thread dies after failing a sanity check set to confirm that the compacting files are expected files. <details> ``` Caught an Exception in Thread[CompactionPlanner-Worker-4,5,main]. Thread is dead. java.lang.IllegalArgumentException: Compacting not in set of all files [[A000006h.rf, 973 35], [F000006i.rf, 581 5]] [[A000006b.rf, 963 33], [F000006f.rf, 667 11]] at com.google.common.base.Preconditions.checkArgument(Preconditions.java:443) at org.apache.accumulo.tserver.compactions.Compactable$Files.<init>(Compactable.java:78) at org.apache.accumulo.tserver.compactions.Compactable$Files.<init>(Compactable.java:58) at org.apache.accumulo.tserver.tablet.CompactableImpl.getFiles(CompactableImpl.java:1008) at org.apache.accumulo.tserver.compactions.CompactionService.planCompaction(CompactionService.java:247) at org.apache.accumulo.tserver.compactions.CompactionService.lambda$compact$4(CompactionService.java:233) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:829) ``` </details> **Versions (OS, Maven, Java, and others, as appropriate):** - Affected version(s) of this project: 2.1.0-SNAPSHOT **To Reproduce** 1. Create a table on a cluster via the shell 2. Run continuous ingest on this table with the accumulo-testing repo 3. Wait a few minutes and then the error will show up in the monitor logs **Screenshots**   **Additional context** I have run multiple tests with various compaction opts (including the default opts and the example on the website) and the error occurs consistently for each test. See discussion on the PR for additional details (https://github.com/apache/accumulo-testing/pull/149#issuecomment-902785315). Code throwing the error: https://github.com/apache/accumulo/blob/8a636a3ba91f5dae1d8b09b095178889a7d79c1d/server/tserver/src/main/java/org/apache/accumulo/tserver/compactions/Compactable.java#L78-L79 -- 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]
