Search code examples
amazon-web-servicesamazon-s3requestlimit

Amazon Web Services S3 Request Limit


I'm using AWS to run some data processing. I have 400 spot instances in EC2 with 4 processes each, all of them writing to a single bucket in S3. I've started to get a (apparently uncommon) error saying:

503: Slow Down

Does anyone know what the actual request limit is for an S3 bucket? I cannot find any AWS documentation on it.

Thank you!


Solution

  • From what I've read, Slow Down is a very infrequent error. However, after posting this question I received an email from AWS that said the had capped my LIST requests to 10 requests per second because I had too many going to a specific bucket.

    I had been using a custom queuing script for the project I am working on, which relied on LIST requests to determine the next item to process. After running into this problem I switched to AWS SQS, which was a lot simpler to implement than I'd thought it would be. No more custom queue, no more massive amount of LIST requests.

    Thanks for the answers!