MQTT: introduce limits for the retained message store (backport #17189) - #17190
Merged
Conversation
This adds both size and message count limits. (cherry picked from commit 6d6e90d)
Author
|
Tick the box to add this pull request to the merge queue (same as
|
4.3.5: MQTT: introduce limits for the retained message store (backport #17189)
4.3.5: MQTT: introduce limits for the retained message store (backport #17189)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This adds both size and message count limits to how much data can be retained via MQTT's retained messages feature. The protocol itself does not discuss any limits or safety protocols.
All retained messages flow through one code path, which is where the limits are applied.
The defaults are 100K messages (and as many topics [1]) per virtual host, or 1 GiB of data. I consider these to be very reasonable, even generous, for most MQTT workloads.
The accounting is not super precise because accounting for ETS/DETS metadata is hard but the way we compute message footprint passes the common sense check:
mc_mqtt:size/1returns the size of the topic plus message properties plus the payload, which is all we really need to account for to introduce a practical limit.This is an automatic backport of pull request MQTT: introduce limits for the retained message store #17189 done by Mergify.