Suggestion: per queue message size limit #10907
Replies: 2 comments
-
I don't remember seeing similar requests.
Enforcing limits at the queue level means risky changes to the queue <=> channel communication "protocol" and to me, the benefit does not seem to be worth that risk. |
Beta Was this translation helpful? Give feedback.
-
One variation of this that would be easy to implement with no risks that I can think of is a virtual host-level limit. Channels and AMQP 1.0 sessions can fetch it when they initialize. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
An operator can limit the global message size with
max_message_size
. For some environments this is too broad. A user might want to limit the message size in more detail for only some queues (such as quorum queues), but not other queues (classic queues, streams), or for queuesA
,B
,C
, but notD
. This could be designed as a policy.Before doing a full implementation we (CloudAMQP) wanted to check if there are any opinions on this in the community.
Beta Was this translation helpful? Give feedback.
All reactions