danny0405 commented on code in PR #7405:
URL: https://github.com/apache/hudi/pull/7405#discussion_r1052980427
##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/HoodieTimelineArchiver.java:
##########
@@ -455,6 +458,10 @@ private Stream<HoodieInstant> getCommitInstantsToArchive()
{
}
return true;
}).filter(s ->
+ earlestUnCleanCompletedInstant.map(instant ->
+ compareTimestamps(instant.getTimestamp(), GREATER_THAN,
s.getTimestamp()))
+ .orElse(true)
+ ).filter(s ->
Review Comment:
We better check the timeline clean metadata files, only when all the
replaced clustering files are cleaned, can the clustering instant be archived.
--
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]