Bird
0
0

Given the following command:

medium📝 Command Output Q4 of 15
RabbitMQ - Clustering
Given the following command:
rabbitmqadmin declare queue name=task_queue durable=true type=quorum

What will be the durability and type of the created queue?
ADurable quorum queue
BNon-durable classic queue
CDurable classic queue
DNon-durable quorum queue
Step-by-Step Solution
Solution:
  1. Step 1: Analyze command parameters

    The command sets durable=true and type=quorum explicitly.
  2. Step 2: Determine queue properties

    Queue will be durable and of quorum type as specified.
  3. Final Answer:

    Durable quorum queue -> Option A
  4. Quick Check:

    Durable + quorum = Durable quorum queue [OK]
Quick Trick: durable=true and type=quorum means durable quorum queue [OK]
Common Mistakes:
MISTAKES
  • Ignoring the durable flag
  • Assuming default queue type is classic
  • Confusing durability with persistence

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More RabbitMQ Quizzes