SECURITY WARNING: Never run commands you don't understand. Always review code before execution. Use at your own risk.
MessageQueue New Added 8 September 2026

RabbitMQ: connection blocked by a resource alarm

The broker raised a memory or disk alarm and stopped reading from publishing connections. Consumers keep working, publishers hang without an error, and the queue drains until the alarm clears, which makes it look like a network stall rather than backpressure.

Quick fix

Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.

Quick fix
rabbitmqctl status | grep -A5 'alarms\|memory\|disk_free'
rabbitmq-diagnostics alarms
rabbitmq-diagnostics memory_breakdown

# Free space is the usual trigger: the default watermark is 50 MB
rabbitmqctl set_disk_free_limit "2GB"
rabbitmqctl set_vm_memory_high_watermark 0.6

# Real fix is a backlog: find the queue that grew
rabbitmqctl list_queues name messages consumers --formatter pretty_table

# Handle the signal in the client rather than blocking forever
# amqplib: connection.on('blocked', ...) / ('unblocked', ...)

How to diagnose MessageQueue errors

Queue errors are usually about the balance between producers and consumers. Growing lag means consumers cannot keep up. Endless rebalancing usually means consumers are being evicted for exceeding a poll or heartbeat interval, not that the cluster is unhealthy. A poison message, one that always fails processing, will block an ordered partition forever unless there is a dead-letter path, which is why a DLQ is not optional in production.

If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.

  1. Measure lag over time, not once: kafka-consumer-groups --describe --group <g>. The trend distinguishes a throughput problem from a stuck consumer.
  2. For repeated rebalancing, compare processing time per batch against max.poll.interval.ms. Slow processing looks exactly like a dead consumer to the coordinator.
  3. Always configure a dead-letter queue with a bounded retry count. Without one, a single malformed message stops the partition indefinitely.
  4. Check message size against the broker limit before assuming a network failure: SQS caps at 256 KB, Kafka at message.max.bytes.
  5. Verify consumer ACLs and topic authorisation separately from connectivity; an authorisation failure often surfaces as a metadata error.

Tools worth reaching for

  • kafka-consumer-groups
  • rabbitmqctl list_queues
  • aws sqs get-queue-attributes
  • kafkacat / kcat
  • flower (Celery)

Authoritative references

Primary documentation for this error, worth reading before applying any fix in production.

rabbitmq.com

Related MessageQueue errors

See all 14 MessageQueue errors →

Browse other categories

Something missing or wrong?

This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.