Save offline messages to Cassandra

    Initialize the Cassandra tablespace:

    Create the mqtt_msg table:

    TIP

    The message table structure cannot be modified. Please use the above SQL statement to create

    Create rules:

    Open EMQX Dashboard (opens new window) and select the “Rules” tab on the left.

    Then fill in the rule SQL:

    FROM description

    t/#: The publisher publishes a message to trigger the action of saving of offline messages to Cassandra

    $events/session_subscribed: The subscriber subscribes to topics to trigger the action of getting offline messages

    $events/message_acked: The subscriber replies to the message ACK to trigger the action of deleting the offline message that has been received

    Related actions:

    Select “Add Action” on the “Response Action” interface, and then select “Save offline messages to Cassandra” in the “Add Action” drop-down box

    Save offline Message to Cassandra - 图3

    Now that the resource drop-down box is empty, and you can click “New” in the upper right corner to create a Cassandra resource:

    The “Create Resource” dialog box pops up

    Save offline Message to Cassandra - 图5

    Fill in the resource configuration:

    Fill in the real Cassandra server address and the values corresponding to other configurations, and then click the “Test Connection” button to ensure that the connection test is successful.

    Finally click the “OK” button.

    Save offline Message to Cassandra - 图7

    Return to the rule creation interface and click “Create”.

    The rule has been created, and you can send a piece of data through the WebSocket client of Dashboard (The QoS of the published message must be greater than 0):

    Save offline Message to Cassandra - 图9

    After the message is sent, you can see the message is saved in Cassandra through cqlsh:

    Use another client to subscribe to the topic “t/1” (the QoS of the subscribed topic must be greater than 0, otherwise the message will be received repeatedly):

    Save offline Message to Cassandra - 图11

    After subscribing, you will receive the offline message saved in Cassandra immediately:

    Save offline Message to Cassandra - 图13