RocketMQ APIs - Protobuf definition for Apache RocketMQ

Clone this repo:
  1. 205e59c [ISSUE #80] Update document for pull-related RPC (#81) by lk · 12 days ago main
  2. 8e27037 [ISSUE #78] add attempt_id in ReceiveMessageRequest (#79) by lk · 4 weeks ago
  3. 36232f4 add code OFFSET_NOT_FOUND (#77) by lk · 6 weeks ago
  4. bf440e4 Merge pull request #72 from xdkxlk/main by lk · 8 weeks ago
  5. 541137d Add Code: ILLEGAL_OFFSET by kaiyi.lk · 8 weeks 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.