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
This started recently and I'm uncertain as to the cause. I have a rather large S3 directory (10TB) that I delete using the following code:
let object_store_s3_path = &object_store::path::Path::from(s3_path);
let stream = object_store.list(Some(object_store_s3_path)).map_ok(|m| m.location).boxed();
object_store.delete_stream(stream).try_collect::<Vec<Path>>().await?;
Describe the bug
This started recently and I'm uncertain as to the cause. I have a rather large S3 directory (10TB) that I delete using the following code:
The error I started receiving this weekend is:
Using version 0.11.0.
Deleting the directory via other tooling works as expected.
To Reproduce
For me just attempting to delete a large directory seems to trigger it.
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered: