aws-sdk-rust
aws-sdk-rust copied to clipboard
Chunk Encoding
Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment
-->
Tell us about your request Add support for Chunk Encoding
Can you elaborate on what you mean by "Chunk Encoding" ?
This refers to the SDK being able to support Transfer-Encoding: Chunked. It's primarily used for uploading files to S3.
Implementation is being tracked in https://github.com/awslabs/smithy-rs/issues/1798
Is there anything we could do to help getting this feature implemented?
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?
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
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