CTTY commented on code in PR #2108:
URL: https://github.com/apache/iceberg-rust/pull/2108#discussion_r2766545622


##########
crates/iceberg/src/io/storage.rs:
##########
@@ -92,6 +93,9 @@ pub trait Storage: Debug + Send + Sync {
     /// Delete all files with the given prefix
     async fn delete_prefix(&self, path: &str) -> Result<()>;
 
+    /// Delete multiple files from a stream of paths.
+    async fn delete_stream(&self, paths: BoxStream<'static, String>) -> 
Result<()>;

Review Comment:
   There are some considerations when designing this, I've put it here: 
https://github.com/apache/iceberg-rust/issues/2065#issuecomment-3850441553



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to