What is DescribeShareGroupOffsets?
Shows consumption progress of a share group, specifically the start offset and state epoch per partition. Unlike consumer group offsets (a single committed offset), share group state is more complex because multiple records can be in-flight simultaneously.
Wire Diagram
Request Header · flexible
message_size
int32 · 4B
api_key
int16 · 2B
api_version
int16 · 2B
correlation_id
int32 · 4B
client_id
string (compact)
tagged
var
DescribeShareGroupOffsetsRequest v0
tagged
var
GroupId
string (compact)
tagged
var
TopicName
string (compact)
Partitions
[]int32
tagged
var
Schema & Example
Schema { "Groups": [{ "GroupId": string, "Topics": [{ "TopicName": string, "Partitions": [int32] }]? }] }
Example { "Groups": [{ "GroupId": "order-processors", "Topics": [{ "TopicName": "orders", "Partitions": [1, 2, 3] }]? }] }