emqx MQTT broker doesn’t persist session after restart

2k Views Asked by At

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 ?

2

There are 2 best solutions below

0
On

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.

1
On

retainer message storage in disk:

# etc/plugins/emqx_retainer.conf

## Where to store the retained messages.
retainer.storage_type = disc_only

The EMQ X open source product does not support the persistence of messages within the server, which is an architectural design choice. First of all, the core problem solved by EMQ X is connection and routing; secondly, we believe that built-in persistence is a wrong design.

Traditional MQ servers with built-in message persistence, such as the widely used JMS server ActiveMQ, are redesigning the persistence part in almost every major version. There are two problems with the design of built-in message persistence:

How to balance the use of memory and disk? Message routing is memory-based, while message storage is disk-based. Under the multi-server distributed cluster architecture, how to place the Queue and how to replicate the messages of the Queue? Kafka has made the correct design for the above problems: a message server based entirely on disk distributed Commit Log.

After EMQ X separates message routing and message storage responsibilities in design, data replication, disaster recovery backup and even application integration can be implemented flexibly at the data level.

In EMQ X Enterprise Edition products, you can persist messages to databases such as Redis, MongoDB, Cassandra, MySQL, PostgreSQL, and message queues such as RabbitMQ and Kafka through a rule engine or plug-in.