vinothchandar commented on code in PR #13216:
URL: https://github.com/apache/hudi/pull/13216#discussion_r2178783471
##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/timeline/versioning/v1/TimelineArchiverV1.java:
##########
@@ -400,7 +400,8 @@ private boolean deleteArchivedInstants(List<HoodieInstant>
archivedInstants, Hoo
completedInstants.stream()
.forEach(instant ->
activeTimeline.deleteInstantFileIfExists(instant));
}
-
+ // Call Table Format archive to allow archiving in table format.
+ table.getMetaClient().getTableFormat().archive(archivedInstants,
table.getContext(), table.getMetaClient(), table.getViewManager());
Review Comment:
this is allowing the plugged in format to also do any book keeping.. if
needed.. can be no-op as well.
--
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]