You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error code 500 Internal Error indicates that Amazon S3 can't handle the request at that time. The error code 503 Slow Down typically indicates that the number of requests to your S3 bucket is high.
This same post says that:
All AWS SDKs have a built-in retry mechanism with an algorithm that uses exponential backoff.
However, it looks like there's a long-standing issue in aws-sdk-go where the SDK does not throttle S3 requests properly: aws/aws-sdk-go#3977
Edit: aws-sdk-go-v2 correctly implements throttled retries in this case. We should use it here.
The text was updated successfully, but these errors were encountered:
We have observed 503 errors in the auth uploader's
CompleteMultipartUpload
calls.As per https://repost.aws/knowledge-center/http-5xx-errors-s3:
This same post says that:
However, it looks like there's a long-standing issue in aws-sdk-go where the SDK does not throttle S3 requests properly: aws/aws-sdk-go#3977
Edit: aws-sdk-go-v2 correctly implements throttled retries in this case. We should use it here.
The text was updated successfully, but these errors were encountered: