| // 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": 52, |
| "type": "response", |
| "name": "VoteResponse", |
| // Version 1 adds leader endpoint (KIP-853) |
| // Version 2 handles PreVote requests |
| "validVersions": "0-2", |
| "flexibleVersions": "0+", |
| "fields": [ |
| { "name": "ErrorCode", "type": "int16", "versions": "0+", |
| "about": "The top level error code."}, |
| { "name": "Topics", "type": "[]TopicData", "versions": "0+", |
| "about": "The results for each topic.", "fields": [ |
| { "name": "TopicName", "type": "string", "versions": "0+", "entityType": "topicName", |
| "about": "The topic name." }, |
| { "name": "Partitions", "type": "[]PartitionData", "versions": "0+", |
| "about": "The results for each partition.", "fields": [ |
| { "name": "PartitionIndex", "type": "int32", "versions": "0+", |
| "about": "The partition index." }, |
| { "name": "ErrorCode", "type": "int16", "versions": "0+", |
| "about": "The partition level error code."}, |
| { "name": "LeaderId", "type": "int32", "versions": "0+", "entityType": "brokerId", |
| "about": "The ID of the current leader or -1 if the leader is unknown."}, |
| { "name": "LeaderEpoch", "type": "int32", "versions": "0+", |
| "about": "The latest known leader epoch."}, |
| { "name": "VoteGranted", "type": "bool", "versions": "0+", |
| "about": "True if the vote was granted and false otherwise."} |
| ] |
| } |
| ] |
| }, |
| { "name": "NodeEndpoints", "type": "[]NodeEndpoint", "versions": "1+", "taggedVersions": "1+", "tag": 0, |
| "about": "Endpoints for all current-leaders enumerated in PartitionData.", "fields": [ |
| { "name": "NodeId", "type": "int32", "versions": "1+", |
| "mapKey": true, "entityType": "brokerId", "about": "The ID of the associated node."}, |
| { "name": "Host", "type": "string", "versions": "1+", "about": "The node's hostname." }, |
| { "name": "Port", "type": "uint16", "versions": "1+", "about": "The node's port." } |
| ] |
| } |
| ] |
| } |