Persistent Message Delivery Mode when a Queue subscribes to a Topic - solace

I have a queue subscribing from a topic. My MQTT client publishes messages to the topic. My Java program consumes messages from the queue using JCSMP API. However, I notice that the delivery mode of the messages received by my Java program from the Queue is DIRECT or sometimes NON-PERSISTENT. So, does this mean my messages will not be spooled to SAN? Is it possible for me to set topic subscription for my queue so that all messages received from the topic and stored in this queue will be persistent?
Thank you.

When the Solace appliance receives a message that was published to a topic that matches a topic subscription set on a queue, the message will be delivered to the queue and spooled. If this message is originally set with a DIRECT delivery mode, the delivery mode will be promoted to NON-PERSISTENT. NON-PERSISTENT messages are treated as a Guaranteed Message and will be spooled.
If you are receiving a NON-PERSISTENT message, the message was properly spooled on the queue.
When the Solace appliance receives a message that was published to a topic that matches a topic subscription applied directly on a client, they message will not be spooled and will be delivered directly to the client without being queued. If this message is originally published with a NON-PERSISTENT or PERSISTENT delivery mode, it will be demoted and received by the client as DIRECT.
If you are receiving messages with a delivery mode of DIRECT, verify that the client is not directly subscribed to the topic. The topic should be applied on the queue that the client is bound to instead.

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 - How to know is message received by device

We have mqtt producer and consumer.
MQTT producer is at client level.
When we push message to producer, if the device is switched on, then it will receive the message.
If the device is switched off, then it wont receive the message until it turned on.
We need to know, when message sent to MQTT in server, if server is switched off, then we need to know the status as, it is queued or not received by server.
Based on it, we will send message for the user as, Please turn on device to do specific action.
Is there any better approach to know the status in MQTT to find is message is delivered or failed or queued to know server is active or not.
There is no end to end delivery notification in the MQTT protocol. Part of the pub/sub paradigm is that the publisher should be decoupled from the subscriber, there can be anywhere from 0 to many subscribers to a given topic.
There are 2 approaches to how to potentially work round this.
Have the subscriber respond on a separate topic to acknowledge that it has received the message. You will need to include a unique identifier in the message payload so it can be used in the response message.
You can use the Last Will and Testament feature of MQTT to have the subscriber maintain it's current status. When it starts it publishes a retained message to a known topic, e.g. publishes true to consumer/12345/status and sets a LWT to publish false if the device goes offline unexpectedly. It should also publish false if it cleanly shuts down. That way the publisher can check the status of the subscriber before deciding to publish the message.
I don't know which broker you are using. But in EMQ X MQTT broker, when QoS > 1, the message terminated delivered or ack broker will notify the server
The plugin: emqx-web-hook

Can existence of subscribers to an endpoint be detected in Solace

Does Solace have some API call (possibly administrative) by which it can be determined that a topic or queue has at least one "alive" subscriber? For example, a call to return the count of active subscriptions on the topic?
The use case is determining, in a request/reply scenario, whether there is a server "listening" to the relevant endpoint. (Clearly, it would be pointless for a client to send a request if there is no server to respond. Instead, some form of remedial action would be called for.)
Solace does not have an API call that can be used to determine if whether a topic has any subscribers. Similarly, there isn't also any API calls that can be used to determine if a queue has any active consumers.
Instead, what can be done is to enable the "Reject Msg To Sender On No Subscription Match" property on the Client Profile.
When that property is enabled, any Guaranteed Messages that are published to a topic with no subscribers on the Message VPN will be rejected with a "No Subscription Match" error.
However, do note that if the topic subscription of any queue on the Message VPN matches the topic that the Guaranteed Messages are being published to, then the messages will not be rejected with the "No Subscription Match" error. Instead, these messages will be spooled to the queue.

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.

MQTT: Message queuing at server side

I am using mqtt to implement one of the kind of email notification system. I am also planning to use it for trigger notifications inside the webapp. I am confused between whether MQTT stores data at server side itself when we throw on MQTT url with publisher id in JSON format? The reason i am asking this is because in my case, the MQTT stores only the last thrown data, if i send another one then the previous one get disappeared. I want to know is it present at MQTT side from birth(as MQ stands for Message queuing) & i haven't used or need to be implemented at server/consumer side?
There is a common error on Internet ... MQTT stands for MQ Telemetry Transport and not Message Queueing Telemetry Transport. It was created by IBM (with Eurotech) and it was part of the MQ products family in IBM.
MQTT hasn't queue. The broker receives the message on a topic and forwards it on all subscribers on that topic.
There are two main variations on this behaviour:
If the publisher send a message with the "retain" flag active, the broker store this message (only this). If a client subscribes to that topic, the broker immediately sends this last storage message. It's so called "last known message"
If the subscriber connects to the broker with "clean session" to false, the broker saves all subscriptions and all messages only if the client is offline. It's like a queue but not a very queue. With "clean session" false, if the client goes offline but some publishers send messages to topic it is subscribed, the broker store these messages. When the client returns online, it will receive all messages lost.
Paolo.

Resources