aws-s3-multipart-upload
aws-s3-multipart-upload copied to clipboard
Example AWS S3 Multipart upload with aws-sdk for Go - Retries for failing parts
` buffer := make([]byte, maxPartSize) for curr = 0; remaining != 0; curr += partLength { if remaining < maxPartSize { partLength = remaining } else { partLength = maxPartSize...
Hi there, I'm new to S3 api and golang and came across this script I added goroutine to upload part so that it uploads in parallel (where I monitor my...
hello, do you think its possible to change your sample in order to allow to upload from any available connection on the machine at the same time? eg tethered mobile...
I'm trying to perform a multipart upload of a file that is 5.5 GB large, with a memory of around 4 GB. In [line 42](https://github.com/apoorvam/aws-s3-multipart-upload/blob/7c9580c71223c4af4903e0de62aef8eb9d457569/aws-multipart-upload.go#L42) of the code, we have...
I'm trying to upload the content of a whole directory. The content of the directory is never static, sometimes I have 20 files, some other time I've got 25 files,...