The Rust Implementation of Apache RocketMQ Client

Rust Codecov-rust Crates.io docs.rs

RocketMQ Website

Overview

Here is the rust implementation of the client for Apache RocketMQ. Different from the remoting-based client, the current implementation is based on separating architecture for computing and storage, which is the more recommended way to access the RocketMQ service.

Here are some preparations you may need to know Quick Start.

Getting Started

Requirements

  1. rust toolchain, rocketmq's MSRV is 1.61.
  2. protoc 3.15.0+
  3. setup name server, broker, and proxy.

Run Tests

sh cargo llvm-cov --ignore-filename-regex pb/ --open

Run Example

Run the following command to start the example:

```sh

send message via producer

cargo run --example producer

consume message via simple consumer

cargo run --example simple_consumer ```