Issues with load testing of the quorum queue in RabbitMQ 4.0.9 #14981
-
Beta Was this translation helpful? Give feedback.
Answered by
mkuratczyk
Nov 20, 2025
Replies: 1 comment 1 reply
-
|
A single Erlang process always runs on 1 CPU core at at time. Currently, the write-ahead log process ( |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
michaelklishin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

A single Erlang process always runs on 1 CPU core at at time. Currently, the write-ahead log process (
ra_log_wal) is shared by all quorum queues on a given node and with enough traffic across many queues, it will become the bottleneck sooner or later. This process writes data to disk, so a faster disk, especially in terms offsync()time, may help.