kafka_neu-1778570057504.zip-extract/kafka-4.2.0-src/clients/src/main/resources/common/message/FetchResponse.json

Path
kafka_neu-1778570057504.zip-extract/kafka-4.2.0-src/clients/src/main/resources/common/message/FetchResponse.json
Status
scanned
Type
file
Name
FetchResponse.json
Extension
.json
Programming language

      
    
Mime type
text/plain
File type
ASCII text
Tag

      
    
Rootfs path

      
    
Size
7753 (7.6 KB)
MD5
63536cc5c4c19f102f30909e771b1079
SHA1
233acc07a7563aeb30e9d3b57151fad79f964cb7
SHA256
102c7b46666469d29d9810d2437ed10cb66cd90ee1050820405b6acfff94e002
SHA512

      
    
SHA1_git
36dc05ff60ca421d5efad5032805e5fa38926714
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
FetchResponse.json | 7.6 KB |

// 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": 1, "type": "response", "name": "FetchResponse", // Versions 0-3 were removed in Apache Kafka 4.0, Version 4 is the new baseline. // // Version 1 adds throttle time. Version 2 and 3 are the same as version 1. // // Version 4 adds features for transactional consumption. // // Version 5 adds LogStartOffset to indicate the earliest available offset of // partition data that can be consumed. // // Starting in version 6, we may return KAFKA_STORAGE_ERROR as an error code. // // Version 7 adds incremental fetch request support. // // Starting in version 8, on quota violation, brokers send out responses before throttling. // // Version 9 is the same as version 8. // // Version 10 indicates that the response data can use the ZStd compression // algorithm, as described in KIP-110. // Version 12 adds support for flexible versions, epoch detection through the `TruncationOffset` field, // and leader discovery through the `CurrentLeader` field // // Version 13 replaces the topic name field with topic ID (KIP-516). // // Version 14 is the same as version 13 but it also receives a new error called OffsetMovedToTieredStorageException (KIP-405) // // Version 15 is the same as version 14 (KIP-903). // // Version 16 adds the 'NodeEndpoints' field (KIP-951). // // Version 17 no changes to the response (KIP-853). // // Version 18 no changes to the response (KIP-1166) "validVersions": "4-18", "flexibleVersions": "12+", "fields": [ { "name": "ThrottleTimeMs", "type": "int32", "versions": "1+", "ignorable": true, "about": "The duration in milliseconds for which the request was throttled due to a quota violation, or zero if the request did not violate any quota." }, { "name": "ErrorCode", "type": "int16", "versions": "7+", "ignorable": true, "about": "The top level response error code." }, { "name": "SessionId", "type": "int32", "versions": "7+", "default": "0", "ignorable": false, "about": "The fetch session ID, or 0 if this is not part of a fetch session." }, { "name": "Responses", "type": "[]FetchableTopicResponse", "versions": "0+", "about": "The response topics.", "fields": [ { "name": "Topic", "type": "string", "versions": "0-12", "ignorable": true, "entityType": "topicName", "about": "The topic name." }, { "name": "TopicId", "type": "uuid", "versions": "13+", "ignorable": true, "about": "The unique topic ID."}, { "name": "Partitions", "type": "[]PartitionData", "versions": "0+", "about": "The topic partitions.", "fields": [ { "name": "PartitionIndex", "type": "int32", "versions": "0+", "about": "The partition index." }, { "name": "ErrorCode", "type": "int16", "versions": "0+", "about": "The error code, or 0 if there was no fetch error." }, { "name": "HighWatermark", "type": "int64", "versions": "0+", "about": "The current high water mark." }, { "name": "LastStableOffset", "type": "int64", "versions": "4+", "default": "-1", "ignorable": true, "about": "The last stable offset (or LSO) of the partition. This is the last offset such that the state of all transactional records prior to this offset have been decided (ABORTED or COMMITTED)." }, { "name": "LogStartOffset", "type": "int64", "versions": "5+", "default": "-1", "ignorable": true, "about": "The current log start offset." }, { "name": "DivergingEpoch", "type": "EpochEndOffset", "versions": "12+", "taggedVersions": "12+", "tag": 0, "about": "In case divergence is detected based on the `LastFetchedEpoch` and `FetchOffset` in the request, this field indicates the largest epoch and its end offset such that subsequent records are known to diverge.", "fields": [ { "name": "Epoch", "type": "int32", "versions": "12+", "default": "-1", "about": "The largest epoch." }, { "name": "EndOffset", "type": "int64", "versions": "12+", "default": "-1", "about": "The end offset of the epoch." } ]}, { "name": "CurrentLeader", "type": "LeaderIdAndEpoch", "versions": "12+", "taggedVersions": "12+", "tag": 1, "about": "The current leader of the partition.", "fields": [ { "name": "LeaderId", "type": "int32", "versions": "12+", "default": "-1", "entityType": "brokerId", "about": "The ID of the current leader or -1 if the leader is unknown."}, { "name": "LeaderEpoch", "type": "int32", "versions": "12+", "default": "-1", "about": "The latest known leader epoch." } ]}, { "name": "SnapshotId", "type": "SnapshotId", "versions": "12+", "taggedVersions": "12+", "tag": 2, "about": "In the case of fetching an offset less than the LogStartOffset, this is the end offset and epoch that should be used in the FetchSnapshot request.", "fields": [ { "name": "EndOffset", "type": "int64", "versions": "0+", "default": "-1", "about": "The end offset of the epoch." }, { "name": "Epoch", "type": "int32", "versions": "0+", "default": "-1", "about": "The largest epoch." } ]}, { "name": "AbortedTransactions", "type": "[]AbortedTransaction", "versions": "4+", "nullableVersions": "4+", "ignorable": true, "about": "The aborted transactions.", "fields": [ { "name": "ProducerId", "type": "int64", "versions": "4+", "entityType": "producerId", "about": "The producer id associated with the aborted transaction." }, { "name": "FirstOffset", "type": "int64", "versions": "4+", "about": "The first offset in the aborted transaction." } ]}, { "name": "PreferredReadReplica", "type": "int32", "versions": "11+", "default": "-1", "ignorable": false, "entityType": "brokerId", "about": "The preferred read replica for the consumer to use on its next fetch request."}, { "name": "Records", "type": "records", "versions": "0+", "nullableVersions": "0+", "about": "The record data."} ]} ]}, { "name": "NodeEndpoints", "type": "[]NodeEndpoint", "versions": "16+", "taggedVersions": "16+", "tag": 0, "about": "Endpoints for all current-leaders enumerated in PartitionData, with errors NOT_LEADER_OR_FOLLOWER & FENCED_LEADER_EPOCH.", "fields": [ { "name": "NodeId", "type": "int32", "versions": "16+", "mapKey": true, "entityType": "brokerId", "about": "The ID of the associated node."}, { "name": "Host", "type": "string", "versions": "16+", "about": "The node's hostname." }, { "name": "Port", "type": "int32", "versions": "16+", "about": "The node's port." }, { "name": "Rack", "type": "string", "versions": "16+", "nullableVersions": "16+", "default": "null", "about": "The rack of the node, or null if it has not been assigned to a rack." } ]} ] }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
12.86
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 8 8