Skip to content

Integrate with Upstash for Kafka

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 Kafka topic.

Set Up Upstash for Kafka Clusters

To begin using Upstash, visit https://upstash.com/ and create an account.

Create a Kafka Cluster

  1. Once you logged in, you can create a Kafka cluster by clicking on the Create Cluster button.

  2. Type a valid name. Select the region in which you would like your cluster to be deployed. To optimize performance, it is recommended to choose the region that is closest to your EMQX Cloud deployment's region.

  3. Select the cluster type. Currently there are two options, choose single replica for testing/development, multi replica for production use cases.

  4. Click Create Cluster. Now you have a serverless Kafka cluster.

region

Create a topic

  1. Enter the Cluster console, click Topics, and then click Create Topic.
  2. In the Topic name field, type emqx. Leave remains as default, then select Create.
topic

Create Credentials

  1. From the navigation menu, click Credentials, and then click New Credentials.

  2. You can define topic and permission for the credential. In this tutorial, we leave the configuration as defalut and click Create.

key

In the above steps, we have completed the prerequisite settings of Upstash side.

Create Upstash Data Integration

Enable NAT Gateway in EMQX Cloud

  1. Login to EMQX Cloud console, and enter the deployment Overview page.

  2. Click the NAT Gateway tab on the lower section of the page, and click Subscribe Now. Learn more about NAT Gateway.

NAT

Data Integration Configuration

  1. In the EMQX Cloud console, click Data Integrations from the navigation menu in your deployment and click Upstash for Kafka.

    create resource

  2. Enter the information in Endpoints on Upstash Cluster detail page to the Kafka Server. Enter the username and password generated in Create Credentials in Username and Password fields. Click Test to verify the connection to the Upstash server. create resource

  3. Click New to create a Kafka resource. Under the Configured Resources, you can see a new Upstash for Kafka is created.

  4. 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 reported
    • client_id: the ID of the client that publishes the message
    • temp: the temperature data in the message payload
    • Hum: the humidity data in the message payload
sql
SELECT 
   timestamp as up_timestamp, 
   clientid as client_id, 
   payload.temp as temp,
   payload.hum as hum
   FROM
   "temp_hum/emqx"

rule sql

  1. 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.

    rule sql

  2. Click Next to add an action to the rule. Use the following Kafka topic and message template. Click Confirm.

    bash
    # kafka topic
    emqx
    
    # kafka message template 
    {"up_timestamp": ${up_timestamp}, "client_id": ${client_id}, "temp": ${temp}, "hum": ${hum}}

    rule sql

  3. After successfully binding the action to the rule, you can click View Details to see the rule sql statement and the bound actions.

  4. 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

  1. 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. MQTTX

  2. View data in Upstash Console. In Topic, we select 'emqx', click Messages, then we can check the messages.

    monitor