Complete the command to declare a quorum queue named 'my_queue'.
rabbitmqctl add_queue --queue [1] --type quorumThe queue name must be 'my_queue' to match the declaration.
Complete the JSON configuration to set the queue type to quorum.
{"durable": true, "arguments": {"x-queue-type": [1]The argument 'x-queue-type' must be set to 'quorum' to create a quorum queue.
Fix the error in the command to declare a quorum queue with 3 replicas.
rabbitmqadmin declare queue name=my_quorum_queue [1]='quorum' arguments='{"x-quorum-initial-group-size": 3}'
The correct option to specify queue type is 'type' in rabbitmqadmin commands.
Fill both blanks to create a policy that applies quorum queues to all queues starting with 'q_'.
rabbitmqctl set_policy [1] "^q_" '{{"[2]": "quorum"}}' --apply-to queues
The policy name is 'quorum_policy' and the key to set queue type is 'x-queue-type'.
Fill all three blanks to declare a quorum queue with 5 replicas and durable set to true.
rabbitmqadmin declare queue name=[1] durable=[2] arguments='{"[3]": 5}'
The queue name is 'my_quorum_queue', durable is 'true', and the argument key for replicas is 'x-quorum-initial-group-size'.