I'm building data pipelines that sync data from various third party apis. We constantly hit 429 rate limits, and our janky retry system fails regularly.
For those running production data syncs or microservices calling external APIs heavily:
How do you handle rate limiting across multiple workers?
Do you use circuit breakers, retry libraries, or something custom?
How do you prevent retry storms when 100 workers all hit the same rate limit?
Curious what's working at scale.