danny0405 commented on code in PR #11245:
URL: https://github.com/apache/hudi/pull/11245#discussion_r1606403731
##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/timeline/HoodieTimelineArchiver.java:
##########
@@ -217,6 +217,10 @@ private List<HoodieInstant> getCommitInstantsToArchive()
throws IOException {
earliestInstantToRetainCandidates.add(
completedCommitsTimeline.findInstantsModifiedAfterByCompletionTime(latestCompactionTime.get()).firstInstant());
}
+ } catch (UnsupportedOperationException unsupportedOperationException) {
+ // If tableMetadata is FileSystemBackedTableMetadata would throw
UnsupportedOperationException, should skip it to
+ // confirm next operation success
+ LOG.warn("tableMetadata is FileSystemBackedTableMetadata and skip
limiting archiving of instants.");
Review Comment:
> The condition is mdt with enable firstly , and make it disable after
several insert
Then the `isMetadataTableAvailable` should be false? Beause once the mdt is
disabled, the `FILES` partition would also be removed from `hoodie.properties`.
--
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]