awslabs / aws-sdk-rust

AWS SDK for the Rust Programming Language
https://awslabs.github.io/aws-sdk-rust/
Apache License 2.0
2.92k stars 244 forks source link

Chunk Encoding #8

Open vishaalt opened 3 years ago

vishaalt commented 3 years ago

Community Note

-->

Tell us about your request Add support for Chunk Encoding

brainstorm commented 3 years ago

Can you elaborate on what you mean by "Chunk Encoding" ?

rcoh commented 3 years ago

This refers to the SDK being able to support Transfer-Encoding: Chunked. It's primarily used for uploading files to S3.

jdisanti commented 1 year ago

Implementation is being tracked in https://github.com/awslabs/smithy-rs/issues/1798

rigille commented 3 months ago

Is there anything we could do to help getting this feature implemented?

rcoh commented 3 months ago

The main thing here is actually prioritization. Can you tell us more about your use case and why the current SDK doesn't meet those needs?

rigille commented 3 months ago

Sometimes I'm processing a stream of data but don't have enough to save the result locally before uploading. Saving and then uploading would also increase latency

mmason-evertz commented 3 months ago

Sometimes I'm processing a stream of data but don't have enough to save the result locally before uploading. Saving and then uploading would also increase latency

+1 for low latency and close to real time use cases