amogh-jahagirdar commented on code in PR #10523: URL: https://github.com/apache/iceberg/pull/10523#discussion_r1676308188
########## core/src/main/java/org/apache/iceberg/FastAppend.java: ########## @@ -198,6 +198,14 @@ protected void cleanUncommitted(Set<ManifestFile> committed) { } } + @Override + protected boolean cleanUncommittedAfterCommit() { + // appendManifests are not rewritten, never need cleanup + // rewrittenAppendManifests are rewritten in appendManifest, never need cleanup + // newManifests are cleaned up in writeNewManifests Review Comment: > rewrittenAppendManifests are rewritten in appendManifest, never need cleanup Actually, I'll need to take a double pass on the `rewrittenAppendManifests` case, I'm not 100% sure yet this is the case. In the worst case though if we miss an opportunity to cleanup, orphan file removal would always pick it up anyways so I don't really consider it a blocker. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org