You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If oxbow is re-triggered with a file that has already been added to a Delta Table, it will happily add another add action to the transaction log for a redundant file.
While not a problem per se, it is unnecessary and inefficient. append_to_table should probably look at table.get_files before adding the files passed into it.
The text was updated successfully, but these errors were encountered:
Now that I'm thinking about this problem more, this might be a critical dependency to allowing oxbow to work with tables which have merges or optimizes where some files are being removed while others are being added 🤔
If oxbow is re-triggered with a file that has already been added to a Delta Table, it will happily add another
add
action to the transaction log for a redundant file.While not a problem per se, it is unnecessary and inefficient.
append_to_table
should probably look attable.get_files
before adding the files passed into it.The text was updated successfully, but these errors were encountered: