fix: ListGroups request V3 - #642
Merged
Merged
Conversation
thalesmg
force-pushed
the
20250725-fix-list-groups
branch
3 times, most recently
from
July 25, 2025 13:52
ae0c7f4 to
865f7b7
Compare
Currently, the v3 version of this request is lacking `tagged_fields`. ``` [2025-07-25 13:35:23,014] ERROR Exception while processing request from 172.100.239.7:9092-172.100.239.2:41464-502 (kafka.network.Processor) org.apache.kafka.common.errors.InvalidRequestException: Error getting request for apiKey: LIST_GROUPS, apiVersion: 3, connectionId: 172.100.239.7:9092-172.100.239.2:41464-502, listenerName: ListenerName(PLAINTEXT), principal: User:ANONYMOUS Caused by: java.nio.BufferUnderflowException at java.base/java.nio.Buffer.nextGetIndex(Unknown Source) at java.base/java.nio.HeapByteBuffer.get(Unknown Source) at org.apache.kafka.common.utils.ByteUtils.readUnsignedVarint(ByteUtils.java:146) at org.apache.kafka.common.protocol.ByteBufferAccessor.readUnsignedVarint(ByteBufferAccessor.java:63) at org.apache.kafka.common.message.ListGroupsRequestData.read(ListGroupsRequestData.java:129) at org.apache.kafka.common.message.ListGroupsRequestData.<init>(ListGroupsRequestData.java:80) at org.apache.kafka.common.requests.ListGroupsRequest.parse(ListGroupsRequest.java:81) at org.apache.kafka.common.requests.AbstractRequest.doParseRequest(AbstractRequest.java:190) at org.apache.kafka.common.requests.AbstractRequest.parseRequest(AbstractRequest.java:152) at org.apache.kafka.common.requests.RequestContext.parseRequest(RequestContext.java:95) at kafka.network.RequestChannel$Request.<init>(RequestChannel.scala:102) at kafka.network.Processor.$anonfun$processCompletedReceives$1(SocketServer.scala:1030) at java.base/java.util.LinkedHashMap$LinkedValues.forEach(Unknown Source) at kafka.network.Processor.processCompletedReceives(SocketServer.scala:1008) at kafka.network.Processor.run(SocketServer.scala:893) at java.base/java.lang.Thread.run(Unknown Source) ```
thalesmg
force-pushed
the
20250725-fix-list-groups
branch
from
July 25, 2025 14:09
865f7b7 to
8bee59f
Compare
thalesmg
marked this pull request as ready for review
July 25, 2025 14:20
zmstone
approved these changes
Jul 25, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Currently, the v3 version of this request is lacking
tagged_fields.