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

RabbitMQ: PRECONDITION_FAILED - inequivalent arg for queue

The queue already exists with different properties than the ones being declared: durability, TTL, dead-letter routing or queue type. RabbitMQ will not silently redefine an existing queue.

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
# See the current definition
rabbitmqctl list_queues name durable auto_delete arguments

# Options:
# 1. Declare with the same arguments as the existing queue
# 2. Delete and recreate (drains messages, so do this deliberately)
rabbitmqctl delete_queue my-queue

# 3. Version the name so old and new coexist during a rollout
#    my-queue.v2

# Prefer policies over per-declaration arguments for TTL and DLX,
# so they can be changed without redeclaring queues.

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.