conduktor.io ↗

Kafka ShareGroupDescribe Request Wire Format v1 — Binary Protocol Layout

What is ShareGroupDescribe?

Shows share group state including which members hold which partitions and the current assignment epoch. Share groups are stateful on the broker side (delivery counts, acquisition locks), making this more detailed than consumer group describe.

Related Errors

GROUP_AUTHORIZATION_FAILED · GROUP_ID_NOT_FOUND · TOPIC_AUTHORIZATION_FAILED · UNSUPPORTED_VERSION

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
ShareGroupDescribeRequest v1
GroupIds []string
IncludeAuthorizedOperations bool · 1B
tagged var

Schema & Example

Schema
{
  "GroupIds": [string],
  "IncludeAuthorizedOperations": bool
}
Example
{
  "GroupIds": ["value-1", "value-2"],
  "IncludeAuthorizedOperations": 2
}