You have an API that is dependent on a third-party API with a limited rate. How do you tolerate the fluctuations of RPS for your API?
Sigiloso
You can discuss a specific queue size with a TTL or a fixed-size FIFO queue, which drops old items out and replaces them with a new item if it's full.