Integrate with Upstash for Redis
Upstash is a cloud-based, serverless data platform that empowers developers to seamlessly integrate Redis databases and Kafka into their applications without the hassle of managing infrastructure. Offering a serverless architecture, Upstash allows users to enjoy the benefits of Redis, a high-performance, in-memory data store, and Kafka, without dealing with the complexities of deployment, scaling, or maintenance.
This tutorial introduces how to stream the MQTT data to Upstash by creating a data integration. Through the data integration, clients can send the temperature and humidity data to EMQX Cloud using the MQTT protocol and stream the data into Upstash for Redis.
Set Up Upstash for Redis Database
To begin using Upstash, visit https://upstash.com/ and create an account.
Create a Redis Database
Once you logged in, you can create a Redis Database by clicking on the Create Database button.
Type a valid name. Select the region in which you would like your database to be deployed. To optimize performance, it is recommended to choose the region that is closest to your EMQX Cloud deployment's region.
Click Create. Now you have a serverless Redis Database.

View Details
Enter the database console, now you have the information needed for the next steps.

In the above steps, we have completed the prerequisite settings of Upstash side.
Create Upstash Data Integration
Enable NAT Gateway in EMQX Cloud
Login to EMQX Cloud console, and enter the deployment Overview page.
Click the NAT Gateway tab on the lower section of the page, and click Subscribe Now. Learn more about NAT Gateway.
Data Integration Configuration
In the EMQX Cloud console, click Data Integrations from the navigation menu in your deployment and click Upstash for Redis.
Enter the information in Endpoints on Redis detail page to the Redis Server. Don't forget to add the port in the end. Enter the password in Password fields. Click Test to verify the connection to the Upstash server.
Click New to create a Redis resource. Under the Configured Resources, you can see a new Upstash for Redis is created.
Create a new rule. Enter the following SQL statement in the SQL input field. The rule used in this demonstration will read the messages from the
temp_hum/emqx
topic and enrich the JSON object by adding client_id, topic, and timestamp info.up_timestamp
: the time when the message is reportedclient_id
: the ID of the client that publishes the messagetemp
: the temperature data in the message payloadHum
: the humidity data in the message payload
SELECT
timestamp as up_timestamp,
clientid as client_id,
payload.temp as temp,
payload.hum as hum
FROM
"temp_hum/emqx"
Test the SQL rule by entering the test payload, topic, and client information, and click SQL Test. If you see the results like the following, it means the SQL test succeeds.
Click Next to add an action to the rule. We read the up_timestamp, client ID, temperature and humidity form the topic and save to Redis. Click Confirm.
bashHMSET ${client_id} ${up_timestamp} ${temp}
After successfully binding the action to the rule, you can click View Details to see the rule sql statement and the bound actions.
To see the created rules, click the View Created Rules button on the Data Integrations page. Click the icon in the Monitor column to see the detailed metrics of the rule and action.
Test Data Bridge
Use MQTTX to simulate temperature and humidity data reporting.
You need to enter the deployment connection address and add client authentication information for connecting to the EMQX Dashboard.
View data in Upstash Console. In Data Browser, we select the client enrty, then we can check the messages.