Dixit Singla
Dixit Singla

Reputation: 2620

Is it possible to upload more than one file to Amazon S3 in single request?

We are fetching binary blobs (PDF, JPG) from sql server and adding the object to Amazon S3 using AWSSDK.S3 (.net) v3.7.2.2.

Currently the process is adding the binary objects to Amazon S3 sequentially (one by one).

Is there any way/api to add more than one objects to Amazon S3 in a single request as this can improve the performance.

While adding the binary objects we have to pass metadata (Binary object properties like width, height, extension etc..) as well.

Upvotes: 3

Views: 3408

Answers (1)

John Rotenstein
John Rotenstein

Reputation: 269400

It is not possible to upload/download multiple objects in one request.

However, Amazon S3 is highly scalable, so you can send multiple requests in parallel. This will also take more advantage of your available bandwidth due to the overhead of file transfer protocols.

Upvotes: 6

Related Questions