smjn commented on code in PR #18848: URL: https://github.com/apache/kafka/pull/18848#discussion_r1954243251
########## group-coordinator/src/main/java/org/apache/kafka/coordinator/group/GroupCoordinatorService.java: ########## @@ -822,21 +834,60 @@ public CompletableFuture<DeleteGroupsResponseData.DeletableGroupResultCollection }); groupsByTopicPartition.forEach((topicPartition, groupList) -> { - CompletableFuture<DeleteGroupsResponseData.DeletableGroupResultCollection> future = - runtime.scheduleWriteOperation( - "delete-groups", - topicPartition, - Duration.ofMillis(config.offsetCommitTimeoutMs()), - coordinator -> coordinator.deleteGroups(context, groupList) - ).exceptionally(exception -> handleOperationException( - "delete-groups", - groupList, - exception, - (error, __) -> DeleteGroupsRequest.getErrorResultCollection(groupList, error), - log - )); - - futures.add(future); + CompletableFuture<DeleteGroupsResponseData.DeletableGroupResultCollection> shareFuture = deleteShareGroups(topicPartition, groupList) + .thenCompose(groupErrMap -> { + DeleteGroupsResponseData.DeletableGroupResultCollection collection = new DeleteGroupsResponseData.DeletableGroupResultCollection(); + List<String> errGroupIds = new ArrayList<>(); + groupErrMap.forEach((groupId, error) -> { + if (error.code() != Errors.NONE.code()) { Review Comment: Yes, delete responses use the coordinator-common handleOperationException method. -- 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