[aws] First pass at AWS S3 cp multiparts#2
Open
DorianZaccaria wants to merge 1 commit intoG-Corp:masterfrom
Open
[aws] First pass at AWS S3 cp multiparts#2DorianZaccaria wants to merge 1 commit intoG-Corp:masterfrom
DorianZaccaria wants to merge 1 commit intoG-Corp:masterfrom
Conversation
erlcloud_s3:put_object can upload a file smaller than 5GB according to https://docs.aws.amazon.com/AmazonS3/latest/dev/UploadingObjects.html. In order to upload bigger files we need to use multiparts upload, erlcloud provides the needed functions to do that. This commit is a first try at using those functions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I'm opening a discussion here in order to solve the following issue, the implementation might not be the best we can do yet.
erlcloud_s3:put_objectcan upload a file smaller than 5GB according to AWS documentation. In order to upload bigger files we need to use AWS S3 multiparts upload. Erlcloud provides the needed functions, this commit is an attempt to use those functions.