zhuanshenbsj1 commented on code in PR #10002:
URL: https://github.com/apache/hudi/pull/10002#discussion_r1399250779
##########
hudi-common/src/main/java/org/apache/hudi/common/table/view/PriorityBasedFileSystemView.java:
##########
@@ -222,6 +222,16 @@ public Stream<HoodieFileGroup> getAllFileGroups(String
partitionPath) {
return execute(partitionPath, preferredView::getAllFileGroups,
secondaryView::getAllFileGroups);
}
+ @Override
+ public boolean isPartitionAvailableInStoreForTest(String partitionPath) {
+ return execute(partitionPath,
preferredView::isPartitionAvailableInStoreForTest,
secondaryView::isPartitionAvailableInStoreForTest);
+ }
Review Comment:
But without this method, it seems difficult to confirm whether the partition
metadata has been cleaned up.
--
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]