Skip to Main Content

Example: Produce & Consume Message

This article aims to guide you through a simple message send and receive load to verify the core features of AutoMQ.

After successfully installing AutoMQ using the Cluster Deployment on Linux▸ method, you will obtain a list of Bootstrap Server addresses similar to the following format:

192.168.0.1:9092,192.168.0.2:9092

If you installed it via Deploy Locally▸, the Bootstrap Server address will be:

broker1:9092,broker2:9092

In all steps, ensure to replace the Bootstrap Server address with the one you actually obtained.

Prerequisites

  • Linux/Mac/Windows Subsystem for Linux

  • Docker

If the container image download is slow, refer to Docker Hub Mirror Configuration▸

Create a Topic


CMD='docker run --network automq_net automqinc/automq:latest /bin/bash -c "/opt/kafka/kafka/bin/kafka-topics.sh --create --topic quickstart-events --bootstrap-server broker1:9092,broker2:9092"'; [ "$(uname)" = "Linux" ] && eval "sudo $CMD" || eval $CMD

Send a Message


CMD='docker run -it --network automq_net automqinc/automq:latest /bin/bash -c "/opt/kafka/kafka/bin/kafka-console-producer.sh --topic quickstart-events --bootstrap-server broker1:9092,broker2:9092"'; [ "$(uname)" = "Linux" ] && eval "sudo $CMD" || eval $CMD

Consume Messages


CMD='docker run --network automq_net automqinc/automq:latest /bin/bash -c "/opt/kafka/kafka/bin/kafka-console-consumer.sh --topic quickstart-events --from-beginning --bootstrap-server broker1:9092,broker2:9092"'; [ "$(uname)" = "Linux" ] && eval "sudo $CMD" || eval $CMD