I'm using emqx broker and I want to persist session on disk so that I can recover sessions if the broker reboot for any reasons.
What I do:
- start the emqx broker with a docker-compose:
emqx1:
image: emqx/emqx:v4.0.0
environment:
- EMQX_NAME=emqx
- EMQX_NODE__NAME=emqx.local.node
- EMQX_HOST=node1.emqx.io
- EMQX_CLUSTER__DISCOVERY=static
- EMQX_RETAINER__STORAGE_TYPE=disc
volumes:
- emqx-data:/opt/emqx/data
- emqx-etc:/opt/emqx/etc
- emqx-log:/opt/emqx/log
ports:
- 18083:18083
- 1883:1883
- 8081:8081
networks:
gateway-api:
aliases:
- node1.emqx.io
- start a Go subscribe client with Paho MQTT lib with following config. The code of the client can be found in the "stdinpub" and "stdoutsub" folder in the paho repo
clientId = "sub1"
qos = 1
clean = false
topic_subscribe = "topic1"
- start a Go publish client with this config and publish a message:
clientId = ""
clean = true
and the message:
qos = 1
retain = false
topic = "topic1"
payload = "test"
- then I disconnect the client "sub1" and send a 2nd message with qos=1:
qos = 1
retain = false
topic = "topic1"
payload = "test2"
this message is not delivered to the client "sub1" so the broker queues it (qos=1). Indeed if I restart the sub1 client it does get the message "test2".
But if I reboot the broker before restarting the client "sub1", then "test2" get lost and is not delivered.
I tried the same test with retain
set to true
and the message "test2" is well delivered even after the broker is rebooted. So the broker persist the retained messages on disk well but not the client session.
Any idea of why ? Is there a configuration I should change to persist client session on disk ?
As hashed out in the comments.
Client Session storage is a feature only available in the "Enterpise" paid for version of emqx not the free to use version.
This can be seen from the Feature list and the issues 1 & 2 also asking about the feature.