rabbitmqctl status
- generic node inforabbitmqctl cluster_status
- checks connectivity with other nodes and alarms
By default Rabbit will prefetch several messages to boost performance. If the consumption
is slower than the prefetch, the broker may hold on to infinite messages on it's queue.
This is defined by the qos
setting. It should be set to some number to prevend this
unbounded queue.
By default Rabbit will allocate some usage limits for memory and disk (for example, 40% of memory). If rabbit reaches those limits, it will block publishers. Take care in our producers code, they may block on rabbit because of this and you may get yourself on a deadlock.
By default, messages have a TTL of 15s and will desapear if not consumed on that time.