MuleESB / Apache Camel Interview Questions
How does the Throttler EIP work in Camel?
The Throttler limits the rate at which messages are forwarded to a downstream endpoint. It ensures the consumer does not receive more than N messages per time period, protecting rate-limited APIs and preventing downstream overload.
// Allow at most 10 messages per second:
from("jms:queue:events")
.throttle(10).timePeriodMillis(1000)
.to("http://api.example.com/event");
// Dynamic rate from a header (expressions supported):
from("direct:in")
.throttle(header("maxRate")).timePeriodMillis(1000)
.to("direct:downstream");
// Async throttle: do not block the calling thread:
from("direct:bulk")
.throttle(50).timePeriodMillis(1000).asyncDelayed()
.to("direct:target");Excess messages are delayed, not dropped — they are queued internally until the rate window opens. By default, the throttler uses a synchronized counter. Use asyncDelayed() to release the calling thread while the delayed Exchange waits; this is important for high-throughput scenarios to avoid thread starvation. The rate can be set dynamically per-Exchange using an expression.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
