m1a2st commented on code in PR #18050: URL: https://github.com/apache/kafka/pull/18050#discussion_r1905777105
########## clients/src/main/java/org/apache/kafka/clients/consumer/internals/CommitRequestManager.java: ########## @@ -196,6 +198,14 @@ public NetworkClientDelegate.PollResult poll(final long currentTimeMs) { return new NetworkClientDelegate.PollResult(timeUntilNextPoll, requests); } + private void maybeFailPendingRequestsOnCoordinatorFatalError() { + Optional<Throwable> fatalError = coordinatorRequestManager.fatalError(); + if (fatalError.isPresent()) { + pendingRequests.unsentOffsetCommits.forEach(request -> request.future.completeExceptionally(fatalError.get())); + pendingRequests.unsentOffsetFetches.forEach(request -> request.future.completeExceptionally(fatalError.get())); Review Comment: I addressed the clearAll() method after @lianetm’s comments. It makes sense to clear all pendingRequests once we’ve completed all unused requests and fetches. -- 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