Duplicate Message Delivery in MQTT Clients
Client receives: 1 message
{
"topic": "foo/bar",
"payload": "Hello World"
}Enabling/Disabling Deduplication
Last updated
Was this helpful?
Client receives: 1 message
{
"topic": "foo/bar",
"payload": "Hello World"
}Last updated
Was this helpful?
Was this helpful?
Client receives: 2 messages
{
"topic": "foo/bar", // From first subscription match
"payload": "Hello World"
}
{
"topic": "foo/bar", // From second subscription match
"payload": "Hello World"
}global:
broker:
env:
- name: DOCKER_VERNEMQ_DEDUPLICATE_OVERLAPPING_SUBS
value: on # Set to "off" to disable deduplicationservices:
broker:
environment:
DOCKER_VERNEMQ_DEDUPLICATE_OVERLAPPING_SUBS: on # Set to "off" to disable deduplication