Integration / RabbitMQ Interview Questions
How do you troubleshoot memory alarms in RabbitMQ?
A memory alarm fires when a node's memory use crosses vm_memory_high_watermark, and RabbitMQ responds by blocking publishers on the affected node until memory drops - a state visible in the management UI as flow control.
- Confirm the alarm with
rabbitmqctl statusor the management UI's node page, which shows current memory use versus the watermark. - Find the culprit queues using
rabbitmqctl list_queues name messages memoryto spot queues holding an unexpectedly large backlog. - Check for stuck consumers - a large "unacked" count often means a consumer stopped acking, so messages pile up in memory waiting for acknowledgment.
- Reduce memory pressure by draining the backlog, enabling lazy-queue-style behavior for large queues so messages page to disk sooner, or scaling out consumers.
- Only as a last resort, raise
vm_memory_high_watermark, and only after confirming the node actually has the physical RAM headroom to support it.
Treat the watermark increase as a temporary safety valve, not a fix - the underlying backlog or slow-consumer problem still needs addressing.
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...
