dajac opened a new pull request, #19290:
URL: https://github.com/apache/kafka/pull/19290

   This patch addresses a weirdness on the GroupCoordinator write path. The 
`CoordinatorPartitionWriter` uses the `ReplicaManager#appendRecords` method 
with `acks=1` and it expects it to completes immediately/synchronously. It 
works because this is effectively what the method does with `acks=1`. The issue 
is that fundamentally the method is asynchronous so the contract is really 
fragile. This patch changes it by introducing new method 
`ReplicaManager.appendRecordsToLeader`, which is synchronous. It also refactors 
`ReplicaManager#appendRecords` to use `ReplicaManager.appendRecordsToLeader` so 
we can benefits from all the existing tests.
   


-- 
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

Reply via email to