Is there a Mosquitto setting for retaining duplicate messages - mqtt

Using the Mosquitto broker, I have a single publisher that at times may send a duplicate message topics to various clients. The clients are devices that are not always on-line and so when they do connect to the broker, they need to be able to get all of the messages that have been retained. What we observe is that when the client is connected, all of the messages flow through, but if it disconnects and then reconnects, only the latest of any duplicate of the messages arrive.
Our settings are Qos 1 and retain = true. The conf setting has no allow_duplicate_messages so the default is true.
Is there anything we can do to allow all of the messages to be retained.

You are confusing retained messages for Persistent Sessions.
Only the last message published with the retained bit set will be delivered when the client reconnects normally.
If you want to get ALL messages (regardless of the retained bit being set) sent while the client is off line then you need to use Persistent Sessions.
A detailed description of Persistent Sessions can be found here but the short version is as follows:
You need to connect with the clean_session connection option set to false both times you connect (the initial connection and the reconnect)

Related

MQTT Listener on ActiveMQ Artemis - how to ensure all messages (not just latest) are consumed by subscriber

I would like to use use ActiveMQ Artemis as an MQTT broker to ensure that all subscribers to a MQTT topic will receive the MQTT messages, not just the latest one.
For example, an MQTT subscriber crashes and is unable to receive messages for a while. When the subscriber comes back online, it should receive all the messages that had been published to a topic.
From this post, which give the following graphic:
it appears that by setting the QOS to 1 and the retain to true, all messages to a topic will be saved until they are consumed by the subscribers. Is this the case?
If necessary, I could add a UUID to the topic. For example, publish to topic mytopic/13234141431432 and subscribe to mytopic/#. However, the first option is preferable just for simplicity sake.
Retained is different to QOS delivery requirements.
Setting the retained flag will just tell the broker to hold on to the last message on a given topic with the retained flag set and always deliver that message to any new subscribers (including returning clients that have been offline). Retained is how to ensure a client always gets the current state/last state of a topic, not any of the preceding messages. (Also the retained message may be delivered before any queued messages)
If you want to ensure that all missed messages are delivered to a client that has been offline you must publish and subscribe at QOS 1 or 2 and ensure that the Clean Session flag is false when reconnecting.

MQTT paho client publish message and delete immediately the receiver consumes it

I have been trying to work with paho mqtt client to publish and receive messages with mosquitto as the broker and works fine. My use case although involves the sender publishing a message to the broker and disconnects, at this point, the receiver whether connected or disconnected should consume this message and delete it immediately. I have played with all the properties e.g QOS, retained messages, clean sessions, etc but none is yielding the result I want. Please help.
Assuming a Publish and Subscription at QOS2 the message will only ever be delivered to the subscriber once, there is nothing to delete from anywhere.
If you are trying to ensure that the message is only ever consumed by one specific client then I think you have a misunderstanding about what MQTT is.
MQTT is a PUB/SUB protocol, and as such is designed to totally decouple the subscriber from the publisher. The publisher doesn't know how many subscribers there are, just that it has published a message to a given topic.
0 to N (where N can be any number) of clients can subscribe to the topic. Using QOS, persistent subscriptions and the clean session flag, a client can indicate to the broker that it would like to receive any messages published since was last connected, but this will not influence any other clients that may have also subscribed to that topic.
Starting at MQTT protocol v5 (most brokers and clients currently still only support v3 as of Sept 2018) includes something called Shared Subscriptions* that can be used to round-robin deliver messages on a give topic to a group of clients so only 1 of the set will receive this message, but this does not prevent clients not part of the group from also receiving the message.
The last message with the retained flag set published to a topic will be delivered to all clients at the point they subscribe to the topic. This message can be cleared by publishing a new message with a null payload and the retained flag set. A client could publish a message like this as soon as it receives the retained message but there would still be a timing window where other clients may subscribe and receive the retained message.
*some v3 brokers have implemented propriety versions of this.

Fetch data from MQTT

Is there any way to fetch actual sensor state from MQTT without using cache or anything else?
For example after NR restart i need to get all actual values saved in MQTT, how can i do that?
Values are not saved in MQTT, it is not a database it is a messaging system.
Also you do not fetch data with MQTT, you subscribe to a topic and messages are delivered to the client when they are published.
The only exceptions to these statements are the following:
Retained messages. If the retained flag is set on a message by the publisher then the last published message with the retained flag on a topic will be delivered to any clients that subscribe to that topic. This is useful for making sure a subscriber always has access the last published value.
High QOS subscriptions. If the client is configured to subscribe to a topic with QOS 1 or 2 then the broker should queue any messages published on that topic while the client is offline and deliver them to the client when they reconnect and resubscribe to the topic (assuming the same client-id is used and unless the cleansession flag is set to true).
If you want to poll sensors for their current value, you could always have the sensor subscribe to a commands topic and use this to instruct them to publish their latest value.
You must save the last value in a Database.
I do not know how many values you would save. Check out https://www.npmjs.com/package/json-db-node-red, maybe it's enough for you.
Store all incomming values in this json object like a key:value store.
I do not have a solution to trigger a page load in node-red. But you can insert a button to start a flow to show the saved data.

mosquitto MQ still sends retained messages even after clean_session set to true

The clean_session in the mosquito MQ has already set to true.However, when a device gets back online after it got disconnected, it still receives many retained messages which overwhelms the device.
Can any one suggest if there is any other setting we should take care of?
A retained message are different from messages queued for a client for a persistent session.
A last retained message for a given topic will always be delivered to a client that subscribes to that topic when they (re)connect. This is not related to the clean_session flag.
The clean_session flag controls if sessions are persisted across reconnections of the same client id. If the flag is set to false subscriptions are re-established when the client reconnects and any messages published while it was offline are delivered.
If your client is getting overwhelmed by retained messages you must be subscribed to a large number of topics.

Receive offline messages mqtt

I'm using mosquitto as broker and paho(python) as client. I'm trying to make subscriber to receive offline messages.
For that I made following changes:
Fixed client ID
qos level 2
but, still the subscriber is not able to receive messages.
any help?
Thanks,
Rahul
In order to have your client as a durable client and receive messages that were sent to topics when it was offline, you need to meet the following criteria:
Fixed client ID (as you've done)
Always connect with clean_session=False
Subscriptions must be made with QoS>0
Messages published must have QoS>0
The mistake that I make most frequently is to forget either one of points 3 and 4, so I'm publishing with QoS=0 or subscribing with QoS=0, either of which would cause messages not to be stored.
You could also look at the queue_qos0_messages option to tell the broker to store QoS=0 messages as well. Note that this is an implementation detail that may be specific to mosquitto.
Check if you have set the retain flag to true when publishing message to topic, with retain=true, new connected client which subscribes the topic will receive the retained message.

Resources