Reputation: 201
erlang version = 1:24.0.2-1
rabbitmq-server version = 3.8.16-1
Recently installed latest rabbitmq on Ubuntu20. I verified that all was working fine and consumer was consuming the notification from messaging queue as required.
After approximately a day, rabbbitmq crashed as there was 0 disk space left.
After analysis found that around 10G was consumed by msg_store_transient, to which restarting rabbitmq solved the issue. But after a day, it happens again.
Can someone help me further?
Upvotes: 1
Views: 1876
Reputation: 201
Issue is Fixed:
Upvotes: 0
Reputation: 22712
most likely you are consuming messages without sending back the basic_ack
, see for example here the ch.basic_ack
What to do:
Upvotes: 1