SourabhBadhya commented on code in PR #4740: URL: https://github.com/apache/hive/pull/4740#discussion_r1469672819
########## ql/src/test/org/apache/hadoop/hive/ql/txn/compactor/handler/TestAbortedTxnCleaner.java: ########## @@ -282,9 +284,19 @@ public void testCleaningOfAbortedDirectoriesBelowBase() throws Exception { cleaner.setCleanupHandlers(Arrays.asList(mockedTaskHandler)); cleaner.run(); - Mockito.verify(mockedFSRemover, Mockito.times(1)).clean(any(CleanupRequest.class)); + Mockito.verifyNoInteractions(mockedFSRemover); Mockito.verify(mockedTaskHandler, Mockito.times(1)).getTasks(); + directories = getDirectories(conf, t, null); + // Both base and delta files are present since the cleaner skips them as there is a newer write. + Assert.assertEquals(5, directories.size()); + Assert.assertEquals(1, directories.stream().filter(dir -> dir.getName().startsWith(AcidUtils.BASE_PREFIX)).count()); + + // Run compaction and clean up + startInitiator(); + startWorker(); + startCleaner(); + Review Comment: Ack. Should be the sam reason as previous comment. Please add an assert to check whether 1 compaction record is indeed there. ########## ql/src/test/org/apache/hadoop/hive/ql/txn/compactor/handler/TestAbortedTxnCleaner.java: ########## @@ -282,9 +284,19 @@ public void testCleaningOfAbortedDirectoriesBelowBase() throws Exception { cleaner.setCleanupHandlers(Arrays.asList(mockedTaskHandler)); cleaner.run(); - Mockito.verify(mockedFSRemover, Mockito.times(1)).clean(any(CleanupRequest.class)); + Mockito.verifyNoInteractions(mockedFSRemover); Mockito.verify(mockedTaskHandler, Mockito.times(1)).getTasks(); + directories = getDirectories(conf, t, null); + // Both base and delta files are present since the cleaner skips them as there is a newer write. + Assert.assertEquals(5, directories.size()); + Assert.assertEquals(1, directories.stream().filter(dir -> dir.getName().startsWith(AcidUtils.BASE_PREFIX)).count()); + + // Run compaction and clean up + startInitiator(); + startWorker(); + startCleaner(); + Review Comment: Ack. Should be the same reason as previous comment. Please add an assert to check whether 1 compaction record is indeed there. -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org