When I tried to check in HiveMQ control center, i’m able to see a red label with Dropped message (attached screenshot). I don’t know the reason why the messages are getting dropped. In the case of dropped message, will the messages gets deleted when dropped mqtt add-ons topic is not configured ?
If so how to prevent the message being deleted and please provide a solution for this ?
@Shaku , Dropped Message QoS 0 channel not writable means that the publish could not be written on the TCP socket for this client. This could mean that the client did not acknowledge the previous tcp packets (because of a half-open tcp channel for example). Because the publish has QoS-0, the publish is not retried, but dropped (by MQTT specification). Otherwise we would possibly break the requirement of QoS-0 (At-Most-Once).
I suggest you to check your “Clients” list and see which one is subscriber for QoS 0 messages. If your broker sees it as connected, try to disconnect it and let it reconnect.
I hope this helps,
Let me know,
Dasha from HiveMQ team
Since i’m new to HiveMQ please clarify this. the publish has QoS-0, the publish is not retried, but dropped - In the case of dropped message, will the messages gets deleted ? Need more clarification on this.