What is the recommended approach for dealing with ...
# general
m
What is the recommended approach for dealing with global concurrency limiting issues? One solution I am considering is to continue to queue up failed requests indefinitely with a constant period between requests.
m
A constant period between requests will result in spikes at the retry interval which will exacerbate the concurrency limit. Ideally, you would want a back-off strategy with random delays to spread requests more evenly.
🙌 1
m
That makes sense. Thank you!