Ingest data from AutoMQ Kafka
AutoMQ for Kafka is a cloud-native version of Kafka specifically optimized for cloud environments.
It is open source, fully compatible with the Kafka protocol, and maximizes the advantages of the cloud. Unlike self-managed Apache Kafka, AutoMQ Kafka, with its cloud-native architecture, provides features such as automatic capacity scaling, self-balancing of network traffic, and seamless partition movement. These features result in a considerably reduced Total Cost of Ownership (TCO) for users.
This article will guide you on how to import data from AutoMQ Kafka into RisingWave Cloud.
Prepare AutoMQ Kafka and generate test data
To set up your AutoMQ Kafka environment and test the data, please follow the AutoMQ Quick Start guide. This guide will help you deploy your AutoMQ Kafka cluster. Ensure that RisingWave can directly connect to your AutoMQ Kafka server. You can refer Create a VPC connection to learn about how to establish a secure connection with your VPC through AWS PrivateLink or GCP Private Service Connect.
Create a topic
Use Kafka’s command-line tools to create a topic. Ensure you have access to the Kafka environment and the Kafka service is running. Here is the command to create a topic:
NOTE
In this guide, example_topic
and 10.0.96.4:9092
are used as examples of topic name and Kafka server address respectively. Please replace them with your actual topic name and Kafka server address.
To check the result of the topic creation, use this command:
Generate test data
Generate a simple JSON format test data. For example:
Write test data to a topic
Use Kafka’s command-line tools or programming methods to write test data into the topic that you just created. Here is an example using command-line tools:
To view the recently written topic data, use the following command:
Create AutoMQ Kafka data source in RisingWave Cloud
- If you do not have a RisingWave cluster, you need to create one by navigating to Clusters in RisingWave.
- Go to Source, and log in to your database. Create a database user if necessary.
- Click Create source. Because AutoMQ Kafka is 100% compatible with Apache Kafka, you can simply select Kafka in the window that opens.
- Specify the parameters for connecting to the AutoMQ Kafka topic that you created earlier.
note
The default AutoMQ Kafka port is 9092 and SSL is not enabled. If you want to use SSL, please reference the Apache Kafka Documentation for details.
In this guide, you can use JSON format and set the startup mode to
earliest
to read data from the beginning. - Check the generated SQL statement and click Confirm to create the source in your database.
Query the ingested data
- Go to Console and log into your cluster.
- Run the following SQL to query the ingested data:
NOTE
Replace your_source_name
with the name you defined when creating the source.
When you see actual results, that means that you have successfully ingested data from AutoMQ Kafka into RisingWave Cloud. You can now write more data into the topic, or transform the ingested data by creating materialized views in RisingWave Cloud.
Was this page helpful?