conduktor.io ↗

Kafka DeleteShareGroupOffsets Request Wire Format v0 — Binary Protocol Layout

What is DeleteShareGroupOffsets?

Removes offset tracking for specific partitions in a share group, resetting those partitions to an uninitialized state. The share group will start from the beginning (or the current log start offset) for those partitions on next fetch.

Related Errors

COORDINATOR_NOT_AVAILABLE · GROUP_AUTHORIZATION_FAILED · INVALID_GROUP_ID · TOPIC_AUTHORIZATION_FAILED · UNKNOWN_SERVER_ERROR · 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
DeleteShareGroupOffsetsRequest v0
GroupId string (compact)
Topics array
tagged var
TopicName string (compact)
tagged var

Schema & Example

Schema
{
  "GroupId": string,
  "Topics": [{
      "TopicName": string
  }]
}
Example
{
  "GroupId": "order-processors",
  "Topics": [{
      "TopicName": "orders"
  }]
}