tags:

views:

17

answers:

2

Can anyone tell me if we make number of put request on amazon s3 simultaneously, it can create error ?

A: 

My understanding of S3 is that you can do simultaneous put operations without problems. The operations are independent and shouldn't interfere with each other.

Jonik
A: 

From Amazon's Help Center you can do simultaneous put operations but as with any put operation you may receive an error. You need to process that error in your code and retry the put on failures.

Wasauce