| // Licensed to the Apache Software Foundation (ASF) under one or more |
| // contributor license agreements. See the NOTICE file distributed with |
| // this work for additional information regarding copyright ownership. |
| // The ASF licenses this file to You under the Apache License, Version 2.0 |
| // (the "License"); you may not use this file except in compliance with |
| // the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| { |
| "apiKey": 9, |
| "type": "request", |
| "listeners": ["broker"], |
| "name": "OffsetFetchRequest", |
| // Version 0 was removed in Apache Kafka 4.0, Version 1 is the new baseline. |
| // |
| // In version 0, the request read offsets from ZK. |
| // |
| // Starting in version 1, the broker supports fetching offsets from the internal __consumer_offsets topic. |
| // |
| // Starting in version 2, the request can contain a null topics array to indicate that offsets |
| // for all topics should be fetched. It also returns a top level error code |
| // for group or coordinator level errors. |
| // |
| // Version 3, 4, and 5 are the same as version 2. |
| // |
| // Version 6 is the first flexible version. |
| // |
| // Version 7 is adding the require stable flag. |
| // |
| // Version 8 is adding support for fetching offsets for multiple groups at a time. |
| // |
| // Version 9 is the first version that can be used with the new consumer group protocol (KIP-848). It adds |
| // the MemberId and MemberEpoch fields. Those are filled in and validated when the new consumer protocol is used. |
| // |
| // Version 10 adds support for topic ids and removes support for topic names (KIP-848). |
| "validVersions": "1-10", |
| "flexibleVersions": "6+", |
| "latestVersionUnstable": true, |
| "fields": [ |
| { "name": "GroupId", "type": "string", "versions": "0-7", "entityType": "groupId", |
| "about": "The group to fetch offsets for." }, |
| { "name": "Topics", "type": "[]OffsetFetchRequestTopic", "versions": "0-7", "nullableVersions": "2-7", |
| "about": "Each topic we would like to fetch offsets for, or null to fetch offsets for all topics.", "fields": [ |
| { "name": "Name", "type": "string", "versions": "0-7", "entityType": "topicName", |
| "about": "The topic name."}, |
| { "name": "PartitionIndexes", "type": "[]int32", "versions": "0-7", |
| "about": "The partition indexes we would like to fetch offsets for." } |
| ]}, |
| { "name": "Groups", "type": "[]OffsetFetchRequestGroup", "versions": "8+", |
| "about": "Each group we would like to fetch offsets for.", "fields": [ |
| { "name": "GroupId", "type": "string", "versions": "8+", "entityType": "groupId", |
| "about": "The group ID."}, |
| { "name": "MemberId", "type": "string", "versions": "9+", "nullableVersions": "9+", "default": "null", "ignorable": true, |
| "about": "The member id." }, |
| { "name": "MemberEpoch", "type": "int32", "versions": "9+", "default": "-1", "ignorable": true, |
| "about": "The member epoch if using the new consumer protocol (KIP-848)." }, |
| { "name": "Topics", "type": "[]OffsetFetchRequestTopics", "versions": "8+", "nullableVersions": "8+", |
| "about": "Each topic we would like to fetch offsets for, or null to fetch offsets for all topics.", "fields": [ |
| { "name": "Name", "type": "string", "versions": "8-9", "entityType": "topicName", "ignorable": true, |
| "about": "The topic name."}, |
| { "name": "TopicId", "type": "uuid", "versions": "10+", "ignorable": true, |
| "about": "The topic ID." }, |
| { "name": "PartitionIndexes", "type": "[]int32", "versions": "8+", |
| "about": "The partition indexes we would like to fetch offsets for." } |
| ]} |
| ]}, |
| { "name": "RequireStable", "type": "bool", "versions": "7+", "default": "false", |
| "about": "Whether broker should hold on returning unstable offsets but set a retriable error code for the partitions." } |
| ] |
| } |