An error occurred (QuotaExceeded) when calling the PutObject operation #3410
-
when I upload a file to s3 with boto3 (version:1.24.66) : params = dict(service_name="s3", endpoint_url="", boto3.exceptions.S3UploadFailedError: Failed to upload email_alarm.py to customer/hello.txt: An error occurred (QuotaExceeded) when calling the PutObject operation: Unknown how to do it ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @flyyabelle it looks like you encountered a quota limit associated with your accounts. For more information on S3 quota limits see: https://docs.aws.amazon.com/general/latest/gr/s3.html#limits_s3. For more specific information you could see the debug logs by adding |
Beta Was this translation helpful? Give feedback.
Hi @flyyabelle it looks like you encountered a quota limit associated with your accounts. For more information on S3 quota limits see: https://docs.aws.amazon.com/general/latest/gr/s3.html#limits_s3. For more specific information you could see the debug logs by adding
boto3.set_stream_logger('')
to your script. If you need to increase your quota limits I recommend reaching out to AWS Support.