Replies: 3 comments 5 replies
-
Since objects being downloaded from S3 are asynchronous, you would need to implement Do you have any other information about your use case? If you want to download an entire file, you can use If you wanted to stream the file incrementally, you can use the |
Beta Was this translation helpful? Give feedback.
-
Second this... many compression libraries, for instance, expect to wrap an object that is |
Beta Was this translation helpful? Give feedback.
-
For Rusoto, we made https://github.com/Fuuzetsu/zstd-seekable-s3 for use internally (i.e. buyer-be-ware and I suspect there are bugs as we sometimes see problems using this). The large part of the crate is providing While you can't just use it as-is, perhaps you could try to implement something similar for In practice/hindsight, I'd just recommend using |
Beta Was this translation helpful? Give feedback.
-
I'd like to be able to read an S3 object like any other file. That is, I want to implement S3Reader like this :
Any hints? Everything I try hits a wall, but it seems like the first thing anyone would try.
Beta Was this translation helpful? Give feedback.
All reactions