-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Reduce the readFailureBackoff time #12444
Conversation
--- *Motivation* When reading entries met exception, teh dispatcher will backoff 15s to start next read. The 15s is unacceptable at most of case for the consumer. So it's better to reduce the interval. *Modifications* Make the read failure backoff start from 1s.
@merlimat Please help review this PR, it decrease the backoff interval, and will increate the retry interval. I'm not sure whether it will introduce other performance impact. |
@@ -65,7 +65,7 @@ | |||
protected volatile boolean havePendingRead = false; | |||
|
|||
protected volatile int readBatchSize; | |||
protected final Backoff readFailureBackoff = new Backoff(15, TimeUnit.SECONDS, | |||
protected final Backoff readFailureBackoff = new Backoff(1, TimeUnit.SECONDS, |
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.
Can we make it configurable at the broker.conf
? In some cases, May 1 sec is still too long.
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.
Sure
### Motivation When reading entries met exception, the dispatcher will backoff 15s to start next read. The 15s is unacceptable at most of case for the consumer. So it's better to reduce the interval. ### Modifications Make the read failure backoff start from 1s. (cherry picked from commit 99c90a5)
### Motivation When reading entries met exception, the dispatcher will backoff 15s to start next read. The 15s is unacceptable at most of case for the consumer. So it's better to reduce the interval. ### Modifications Make the read failure backoff start from 1s.
### Motivation When reading entries met exception, the dispatcher will backoff 15s to start next read. The 15s is unacceptable at most of case for the consumer. So it's better to reduce the interval. ### Modifications Make the read failure backoff start from 1s. (cherry picked from commit 99c90a5)
Motivation
When reading entries met exception, teh dispatcher will backoff 15s
to start next read. The 15s is unacceptable at most of case for the
consumer. So it's better to reduce the interval.
Modifications
Make the read failure backoff start from 1s.
Verifying this change
(Please pick either of the following options)
This change is a trivial rework / code cleanup without any test coverage.
(or)
This change is already covered by existing tests, such as (please describe tests).
(or)
This change added tests and can be verified as follows:
(example:)
Does this pull request potentially affect one of the following parts:
If
yes
was chosen, please highlight the changesDocumentation
Check the box below and label this PR (if you have committer privilege).
Need to update docs?
doc-required
(If you need help on updating docs, create a doc issue)
no-need-doc
(Please explain why)
doc
(If this PR contains doc changes)