Amazon replay logic in Amazon web services

http://docs.aws.amazon.com/general/latest/gr/api-retries.html

This document mentions that "each AWS SDK implements automatic retry logic, and the AWS SDK for Java automatically repeats queries."

What is the default mechanism for the Java AWS SDK if I do not specify a retry configuration? I use the Java AWS SDK and get a simple service exception if something is not working on the AWS side. I have never experienced any “automatic” repeat mechanism. Can someone explain what the repetition mechanism is?

+4
source share
1 answer

:

AWS SDK Java , ClientConfiguration.

ClientConfiguration, . :

, , . (5xx) :

(4xx) , , ,

, " " , , .


:

Java SDK, ?

ClientConfiguration . , ( , DynamoDB - ). PredefinedClientConfigurations PredefinedRetryPolicies .

+7

Source: https://habr.com/ru/post/1658166/


All Articles