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
Route 53 has a API limit of 5 calls per second and it will throttle future calls. SDK (boto3 API) already has 5 retry logics built-in so it will retry, however, if there are multiple instances being spun up/torn down, then the probability of a failure increases. Currently the code tested successfully with 30 simultaneous launches.
Short-Term
Combine all records in one Private Hosted Zone (PHZ) into a single ChangeRecordSet API call.
Add a 1 second delay between API call to spread out the call per Instance
Long-Term
Leverage SQS to store/retry logic for any ChangeRecordSet API calls. This will ensure that records are created properly AND deleted properly
The text was updated successfully, but these errors were encountered:
Route 53 has a API limit of 5 calls per second and it will throttle future calls. SDK (boto3 API) already has 5 retry logics built-in so it will retry, however, if there are multiple instances being spun up/torn down, then the probability of a failure increases. Currently the code tested successfully with 30 simultaneous launches.
Short-Term
Long-Term
The text was updated successfully, but these errors were encountered: