-
Notifications
You must be signed in to change notification settings - Fork 194
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
Logic to determine the partitions #728
Comments
I think you mean arrow record batch? Could you elaborate the use case of this method? |
Yes :) This could be a broader discussion on where the responsibilities lie between iceberg-rust and the query engine. On the read-side there The current focus is on appending DataFiles, which is reasonable for engines to take control over. As a next step we're also going to add delete operations. Here it gets more complicated since it can be that the delete can be performed purely on Iceberg metadata (eg. dropping a partition), but it can also be the certain Parquet files need te be rewritten. In such a case, the old DataFile will be dropped, and one or more Thoughts? |
Let me close this one for now |
I think @ZENOTME did some solid work for appending data files, but currently we are missing transaction api for adding data files. |
@liurenjie1024 I think this is what I meant with this issue: #342
That one has been merged this morning :) |
Given an Arrow Buffer, we want to apply a specific Partition that will determine the partitions that are being appended.
The text was updated successfully, but these errors were encountered: