希望新增 批量清空队列的功能 #6307
-
希望新增一个批量勾选 批量清空队列的功能,一个一个清空点太慢了 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In several protocols RabbitMQ supports you can ack multiple deliveries at once. And no, it is not "too slow to ack individually". What is slow is when you do not allow RabbitMQ to deliver more than one message before the previous one is acked, that is, when the prefetch values of the consumer channel is set to 1 and not something like 256. Besides other things like the replication factor of the queues, whether the publisher uses confirms and using what approach, and so on. There is an operation to purge the queue, that is, delete all messages in Ready state in it. Streams allow you do acknowledge N messages at once. |
Beta Was this translation helpful? Give feedback.
In several protocols RabbitMQ supports you can ack multiple deliveries at once. And no, it is not "too slow to ack individually". What is slow is when you do not allow RabbitMQ to deliver more than one message before the previous one is acked, that is, when the prefetch values of the consumer channel is set to 1 and not something like 256. Besides other things like the replication factor of the queues, whether the publisher uses confirms and using what approach, and so on.
There is an operation to purge the queue, that is, delete all messages in Ready state in it.
Streams allow you do acknowledge N messages at once.