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

   Global state stores are currently flushed at each commit, which may impact 
performance, especially for EOS (commit each 200ms).
   The goal of this improvement is to flush global state stores only when the 
delta between the current offset and the last checkpointed offset exceeds a 
threshold.
   This is the same logic we apply on local state store, with a threshold of 
10.000 records.
   The implementation replaces the flush based on time to a flush based on the 
delta. 
   
   
   ### Committer Checklist (excluded from commit message)
   - [ ] Verify design and implementation 
   - [ ] Verify test coverage and CI build status
   - [ ] Verify documentation (including upgrade notes)
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to