Is your feature request related to a problem or challenge?
As discussed here, we currently don't have a way to do batch deletes leveraging APIs like S3's DeleteObjects or Azure's BlobBatch
Describe the solution you'd like
Took a look at OpenDal and ObjectStore and noticed that they already have delete_iter and delete_stream to support this. From the iceberg side we can add delete_iter as well. Iterator can be easily converted to stream for ObjectStore's Storage implementation.
plus the paths to delete should be less than 1000(S3) and 256(Azure). pipelining the paths to backend storage won't be really necessary since the bottleneck is obviously the actual delete operation
Willingness to contribute
I can contribute to this feature independently
Is your feature request related to a problem or challenge?
As discussed here, we currently don't have a way to do batch deletes leveraging APIs like S3's DeleteObjects or Azure's BlobBatch
Describe the solution you'd like
Took a look at OpenDal and ObjectStore and noticed that they already have
delete_iteranddelete_streamto support this. From the iceberg side we can adddelete_iteras well. Iterator can be easily converted to stream for ObjectStore's Storage implementation.plus the paths to delete should be less than 1000(S3) and 256(Azure). pipelining the paths to backend storage won't be really necessary since the bottleneck is obviously the actual delete operation
Willingness to contribute
I can contribute to this feature independently