Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

3) Add leader_epoch field to OffsetCommitResponseOffsetFetchResponse

Code Block
OffsetCommitResponseOffsetFetchResponse => throttle_time_ms response error_code
  throttle_time_ms => int32
  responses => [OffsetFetchResponseTopic]
  error_code => int16
 
OffsetFetchResponseTopic => topic partition_responses
  topic => str
  partition_responses => [OffsetFetchResponsePartition]
 
OffsetFetchResponsePartition => partition offset metadata error_code
  partition => int32
  offset => int64
  leader_epoch => int32            <-- NEW
  metadata => nullable_str
  error_code => int16
 

...