-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Core: Extend ResolvingFileIO to support BulkOperations #7976
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think having this makes a lot of sense, just left a small comment
Co-authored-by: Eduard Tudenhoefner <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with one comment
# Conflicts: # core/src/test/java/org/apache/iceberg/io/TestResolvingIO.java
a98b9ee
to
8af9405
Compare
@RussellSpitzer @nastra @bryanck updated per your suggest, appreciate another look. |
…pache#139) Co-authored-by: Hongyue/Steve Zhang <[email protected]>
close #7975
Since #6682 provide major deletion performance improvement on S3 and hadoop fileIO, I think we can try to add SupportsBulkOperations for ResolvingFileIO as it currently dynamically load fileIO based on scheme and both of the delegation fileIOs (S3FileIO and HadoopFileIO) supports bulk deletion.
If custom fileIO is used at catalog but not support bulk operations, it will fall back to standup sequential deletion.
CC @rdblue @nastra @RussellSpitzer @szehon-ho