-
Hello,
Any suggestions or recommendations for raft/cluster tuning to optimize disk write pressure? Cluster oprates normally, but we are worried about high cpu iowait All apps are symfony messenger, which does not rely on consume()
rabbitmq-diagnostics runtime_thread_stats
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
If you use a "polling consumer" or I have no further advice apart from using a long running consumer. |
Beta Was this translation helpful? Give feedback.
If you use a "polling consumer" or
basic.get
as the frame is called in the AMQP 0.9.1 protocol you are going to see some disk use even when there are no messages in the system. Every basic.get to a quorum queue is modelled as a single message consumer command so it is a command being written to the raft log, replicated and replied to. It is very inefficient and wasteful but most likely why you see this overhead.I have no further advice apart from using a long running consumer.