DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
| Table of Contents |
|---|
This page is meant as a template for writing a KIP. To create a KIP choose Tools->Copy on this page and modify with your content and replace the heading with the next KIP number and a description of your issue. Replace anything in italics with your own description.
Status
Current state: [One of "Under Discussion", "Accepted", "Rejected"] Draft
Discussion thread: here [Change the link from the KIP proposal email archive to your own email thread]
JIRA: here [Change the link from KAFKA-1 to your own ticket]
Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).
Motivation
Describe the problems you are trying to solve.
Public Interfaces
Briefly list any new interfaces that will be introduced as part of this proposal or any existing interfaces that will be removed or changed. The purpose of this section is to concisely call out the public contract that will come along with this feature.
A public interface is any change to the following:
Binary log format
The network protocol and api behavior
Any class in the public packages under clientsConfiguration, especially client configuration
org/apache/kafka/common/serialization
org/apache/kafka/common
org/apache/kafka/common/errors
org/apache/kafka/clients/producer
org/apache/kafka/clients/consumer (eventually, once stable)
Monitoring
Command line tools and arguments
- Anything else that will likely break existing users in some way when they upgrade
Proposed Changes
...
The controller quorum fetch loop relies on a timing invariant for correctness and liveness: the controller.quorum.fetch.timeout.ms must be significantly larger than Raft maximum fetch wait time(current hardcode to 500) after KAFKA-16926 Optimize BeginQuorumEpoch heartbeat.
In practice, the algorithm makes progress because:
raft_max_fetch_wait_time (500 ms) * 2 <= controller.quorum.fetch.timeout.ms
If operators set an unusually small raft_max_fetch_wait_time * 2, this invariant can be violated, risking premature timeouts, spurious retries, and degraded stability. To preserve the invariant across configurations and upgrades, we propose to enforce a lower bound of 1000 ms for controller.quorum.fetch.timeout.ms.
For example:
We assume network latency is 100ms
T=0ms: The Leader send beginQurum resquest to the follower.
T=100ms: The Follower start fetching and sends fetch request and starts 500ms *fetchTimer*
T=600ms: Leader does not receive fetch request (RAFT_MAX_FETCH_WAIT_MS e.g. 500)
do two things:
1) The Leader send BeginQuorum request to the follower again.
2) The follower sends fetch request to leader and start *fetchTimer*
T=700ms: four cases
1) the follower receives BeginQuorum and response it (100 network latency) -> leader still works
2) the follower does not receive beginQuorum request -> leader MAYBE not work
1) the leader receives fetch and response it (100 network latency) -> follower still works
2) the leader does not receive fetch Request -> follower MAYBE not work
T=800ms: Follower's fetch timer is expired.
then the follower transitions to the *Prospective state*, and it triggers election... (wasted resources even the leader is working fine).
From the above flow, we give the leader and follower two changes to check each state, one is beginQuorum, another is fetch but their start point is different.
Public Interfaces
Configuration change (validation only):
controller.quorum.fetch.timeout.msType: int (ms)
Lower bound: 1000 ms (enforced)
Default: unchanged (2000ms)
Behavior: Values < 1000 ms are invalid and will be rejected with a clear error message.
Proposed Changes
Config validation:
Update the config definition for
controller.quorum.fetch.timeout.msto useatLeast(1000).Apply the same validation path for both static startup configs and any dynamic/config-provider paths that may set this value.
Error messaging:
On invalid values, throw a
ConfigExceptionwith actionable guidance, e.g.:“
controller.quorum.fetch.timeout.msmust be ≥ 1000 ms to ensure the controller fetch loop makes progress without violating timing assumptions.”
Documentation:
Update the config reference to document the lower bound and the rationale (ties to fetch-wait timing and controller liveness).
Compatibility, Deprecation, and Migration Plan
- What impact (if any) will there be on existing users?
- If we are changing behavior how will we phase out the older behavior?
- If we need special migration tools, describe them here.
- When will we remove the existing behavior?
Test Plan
Describe in few sentences how the KIP will be tested. We are mostly interested in system tests (since unit-tests are specific to implementation details). How will we know that the implementation works as expected? How will we know nothing broke?
Rejected Alternatives
...
Backward compatibility:
Deployments already using values ≥ 1000 ms are unaffected.
Deployments with < 1000 ms will fail fast at startup with a clear error.
No deprecations; this is a validation tightening to ensure correctness.
Migration:
Operators must raise any sub-1000 ms values to ≥ 1000 ms before/with the upgrade.
Test Plan
Unit tests for config validation.
Rejected Alternatives
- Do not change the limitation:
Maybe cause the system unavailable if users' configuration is wrong.
Make raft max fetch wait configurable instead:
Out of scope here. Even if exposed, we would still need a minimum for the timeout to maintain a robust ratio.