leesf commented on code in PR #5572:
URL: https://github.com/apache/hudi/pull/5572#discussion_r874273449
##########
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/client/HoodieTimelineArchiver.java:
##########
@@ -459,6 +459,9 @@ private Stream<HoodieInstant> getCommitInstantsToArchive() {
private Stream<HoodieInstant> getInstantsToArchive() {
Stream<HoodieInstant> instants =
Stream.concat(getCleanInstantsToArchive(), getCommitInstantsToArchive());
+ if (config.isMetastoreEnabled()) {
+ return Stream.empty();
Review Comment:
For metastore implementation, is it possible to have something new like
`MetastoreHoodieTiimelineArchiver` implement?
--
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]