Question

I've got alot of small files that I'd like to put into s3. My goal is to minimize cost and use the fewest amount of put request's as possible. Is there anyway to stream multiple files onto s3 using only one put request? Currently the code I've implemented uses a put request per file and goes straight from the browser into s3. Thanks for any suggestions.

Was it helpful?

Solution

Check their API, there is batch() function to create a series of requests to be sent at once.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top