AWS Error: Throttle Overspeed

I have no idea about this. A few days ago he went well. But these days he always throws exceptions. The message has exceeded speed and enter Sender, Code Throttling. Not one server threw an error. Three of our servers throw an exception. When retrieving data from Amazon, the error is an NFO Exception Retriable invalid response returned from DescribeJobFlows: {"Error" => "Message" => "Overspeed", "Code" => "Throttling", "Type" => "Sender" }} when calling DescribeJobFlows on Amazon :: Coral :: ElasticMapReduceClient, retry in 3.0 seconds. Please help me! I really don't know about that. Thank you so much.

+7
amazon-web-services throttling
source share
2 answers

Google brought me here ...

In any case, each AWS API is protected against dynamic throttling. This is sad, but it is best to repeat / sleep between API calls :(

Good luck.

+1
source share

You must add retry logic to your code. See this other Stackoverflow question for some ways to implement this in Python:

Need a recommendation on adding delayed return logic in AWS API in python

0
source share

All Articles