RocketMQ APIs - Protobuf definition for Apache RocketMQ

Clone this repo:
  1. f2597b8 [ISSUE #94] Proto enhancement for "RIP‐83 Lite Topic" (#95) by Quan · 11 hours ago main
  2. f4e9239 build(bazel): Compile using the specified versions of GCC and G++ (#97) by lizhimins · 11 hours ago
  3. 5c9f841 [ISSUE #92] Support ReconnectEndpointsCommand by lizhimins · 4 months ago
  4. 9d0b6eb support ReconnectEndpointsCommand by maowei.ymw · 4 months ago
  5. 547bb18 support ReconnectEndpointsCommand by maowei.ymw · 4 months ago

Overview

RocketMQ APIs use Protocol Buffers version 3 (proto3) as their Interface Definition Language (IDL) to define the API interface and the structure of the payload messages. Reading these definitions can understand RocketMQ 5.0 models and API behaviors easily.

Currently, Apache RocketMQ only supports these APIs over gRPC, a high-performance binary RPC protocol over HTTP/2. The implementation consists of two parts:

  • rocketmq: The main repo of Apache RocketMQ contains a proxy module that implements this specification in the server-side.
  • rocketmq-clients: A mono repo consists of polyglot clients that implement this specification in the client-side.