skaundinya15 commented on a change in pull request #10962: URL: https://github.com/apache/kafka/pull/10962#discussion_r663430630
########## File path: clients/src/main/java/org/apache/kafka/common/requests/OffsetFetchRequest.java ########## @@ -128,6 +227,38 @@ public boolean requireStable() { return data.requireStable(); } + public Map<String, List<TopicPartition>> groupIdsToPartitions() { + Map<String, List<TopicPartition>> groupIdsToPartitions = new HashMap<>(); + for (OffsetFetchRequestGroup group : data.groupIds()) { + List<TopicPartition> tpList = null; + if (group.topics() != ALL_TOPIC_PARTITIONS_BATCH) { + tpList = new ArrayList<>(); + for (OffsetFetchRequestTopics topic : group.topics()) { + for (Integer partitionIndex : topic.partitionIndexes()) { + tpList.add(new TopicPartition(topic.name(), partitionIndex)); + } + } + } + groupIdsToPartitions.put(group.groupId(), tpList); + } + return groupIdsToPartitions; + } + + public Map<String, List<OffsetFetchRequestTopics>> groupIdsToTopics() { + Map<String, List<OffsetFetchRequestTopics>> groupIdsToTopics = new HashMap<>(); + for (OffsetFetchRequestGroup group : data.groupIds()) { Review comment: `Collectors.toMap()` doesn't allow `null` entries (we could have `null` entries if a specific group wants all the topic partition offsets) and throws an NPE, so instead I can use `foreach` and do an inline put for all entries to the hashmap. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org