GetObjectAsync Method #3015
-
Describe the issueWill the GetObjectAsync method throw an error if the server sends a 429 error code?
Links |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Converting this to |
Beta Was this translation helpful? Give feedback.
-
@Mr0N While Error Responses does not explicitly state the error code 429 (which indicates Too Many Requests), any error returned by S3 service should be handled by S3ErrorResponseUnmarshaller. So you could perhaps try incorporating exponential backoff strategy for handling this exception in your code. |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
@Mr0N While Error Responses does not explicitly state the error code 429 (which indicates Too Many Requests), any error returned by S3 service should be handled by S3ErrorResponseUnmarshaller. So you could perhaps try incorporating exponential backoff strategy for handling this exception in your code.
Answer:
Thanks,
Ashish