This library is only needed for the old AWS SDK v1. This functionality is built into v2: https://docs.aws.amazon.com/AmazonS3/latest/API/s3_example_s3_Scenario_UploadStream_section.html
This library allows you to efficiently stream large amounts of data to AWS S3 in Java without having to store the whole object in memory or use files. The S3 API requires that a content
length be set before starting uploading, which is a problem when you want to calculate a large amount of data on the fly.
The standard Java AWS SDK will simply buffer all the data in memory so that it can calculate the length, which consumes
RAM and delays the upload. You can write the data to a temporary file but disk IO is slow (if your data is already in a file, using this library is pointless). This library provides
an OutputStream
that packages data written to it into chunks which are sent in a multipart upload. You can also use
several streams and upload the data in parallel.
The entrypoint is the class StreamTransferManager
. Read more in the
javadoc,
including a usage example.
This is available from maven central.
- Abort multipart upload when content is empty thanks to @kcalcagno
- Use String.valueOf to protect against null uploadId in toString thanks to @kcalcagno
- Sort PartETag list to avoid an InvalidPartOrder error on complete (#34) thanks to @dana-katzenelson-livongo
- Exceptions during upload lead to an exception in writers instead of them getting stuck trying to put on the queue.
- Bump
aws-java-sdk
andslf4j-api
dependency versions.
- Add
checkIntegrity()
method thanks to @gkolakowski-ias. This allows verifying the upload with MD5 hashes.
- Support uploading empty objects. In this case the user may want to override
customisePutEmptyObjectRequest
. - Bump
aws-java-sdk
andslf4j-api
dependency versions.
- Bump
aws-java-sdk
dependency version
- Avoid race condition in big uploads causing some parts to be missing from final completed upload.
- Allow thrown
Error
s (e.g. OOM) to bubble up unchanged.
- The
checkSize()
method is now private as the user no longer needs to call it. You can remove all calls to it. - The constructor from version 1 is now deprecated. Instead you should call the 3 parameter constructor which has the essentials, and optionally chain the desired builder style setters to configure.