-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Perform max.poll.interval.ms
considering max.poll.records
#2432
Perform max.poll.interval.ms
considering max.poll.records
#2432
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2432 +/- ##
============================================
- Coverage 64.60% 64.58% -0.02%
+ Complexity 706 705 -1
============================================
Files 146 146
Lines 9783 9786 +3
Branches 215 216 +1
============================================
Hits 6320 6320
- Misses 3038 3039 +1
- Partials 425 427 +2
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. |
/cc @aliok @aavarghese @aslom |
2993a8c
to
9d6a765
Compare
Without considering `max.poll.records` in the calculation of the `max.poll.interval.ms` we might cause unnecessary rebalances since without this patch slow consumers might trigger a rebalance at every handled record (when their processing time ~= timeout). Signed-off-by: Pierangelo Di Pilato <pierdipi@redhat.com>
9d6a765
to
581fd58
Compare
/cherry-pick release-1.6 |
@pierDipi: once the present PR merges, I will cherry-pick it on top of release-1.6 in a new PR and assign it to you. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/retest-required |
1 similar comment
/retest-required |
/test unit-tests_eventing-kafka-broker_main |
/retes-required |
/retest-required |
3 similar comments
/retest-required |
/retest-required |
/retest-required |
+1, let's work on that in a separate issue since it's an existing behavior. |
/retest-required |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tests in-progress....
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: aavarghese, pierDipi The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest-required |
@pierDipi: new pull request created: #2439 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Without considering
max.poll.records
in the calculation ofthe
max.poll.interval.ms
we might cause unnecessary rebalancessince without this patch slow consumers might trigger a rebalance
at every handled record (when their processing time ~= timeout).
Signed-off-by: Pierangelo Di Pilato pierdipi@redhat.com
/kind bug