conduktor.io ↗

Kafka ConsumerGroupDescribe Request Wire Format v1 — Binary Protocol Layout

What is ConsumerGroupDescribe?

Describes consumer groups using the new protocol (KIP-848) via kafka-consumer-groups.sh --describe. Returns per-member assignment details with the group epoch. A rapidly incrementing epoch means members are joining/leaving frequently, which is normal during scaling but abnormal in steady state.

Related Errors

COORDINATOR_NOT_AVAILABLE · GROUP_AUTHORIZATION_FAILED · GROUP_ID_NOT_FOUND · INVALID_GROUP_ID · 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
ConsumerGroupDescribeRequest v1
GroupIds []string
IncludeAuthorizedOperations bool · 1B
tagged var

Schema & Example

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