I have durable queues in my cluster. From time to time a queue shows "NaN" in several columns. It happens mostly after network partition. I have normally queues under HA policy but such queue doesn't have replica. Restarting the node on which the queue resides did not help.
I cannot delete such queue. Neither from web interface, nor from the command line.
I tried:
sudo rabbitmqadmin --username=admin --password="mypassword" delete queue name=myqueue
This returns:
*** Not found: /api/queues/%2F/myqueue
(my vhost is definitivelly not called %2F)
and
curl -i -XDELETE "http://admin:mypassword@localhost:15672/api/queues/myvhost/myqueue"
or
curl -XDELETE -u "admin:mypassword" localhost:15672/api/queues/myvhost/myqueue
This just get stuck and doesn't return anything.
I use RabbitMQ 3.5.7 and
Erlang 17.5.3How can I solve the issue with such a stuck queue?