DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
Status
Current state: "Under Discussion"
Discussion thread: here
JIRA: here
Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).
Motivation
Currently, the `ProducerPerformance` tool supports transactional producers but cannot randomly abort transactions during testing. This prevents developers from evaluating how transactional producers behave under failure scenarios.
This proposal targets four critical areas:
- Measuring the overhead costs of aborting transactions;
- Assessing how failed transactions affect producer throughput;
- Validating transaction recovery processes;
- Benchmarking transactional producers under realistic fault conditions.
Public Interfaces
A single new command-line option is introduced: --transaction-abort-ratio
Property | Description |
|---|---|
Type | `Double` |
Range | 0.0 to 1.0 |
Default | 0.0 (no transactions aborted) |
Dependency | Only valid when transactions are enabled |
- At `1.0`: all transactions are aborted;
- At `0.5`: approximately half of the transactions are aborted;
- At `0.0` (default): behavior is identical to the current version.
Proposed Changes
1. Argument parsing (`argParser()`)
Add the `--transaction-abort-ratio` argument after the existing `--transaction-duration-ms` argument:
This feature will add a new configuration option to the ProducerPerformance tool that allows users to specify a ratio of transactions to abort during testing. This will enable users to simulate transaction failure scenarios while measuring performance metrics.
Compatibility, Deprecation, and Migration Plan
This feature is fully backward compatible:
- When --transaction-abort-ratio is not specified, the tool behaves exactly as before;
- No existing configuration options are changed or removed;
- All existing functionality remains intact.
Test Plan
The patch will include unit tests to ensure full coverage:
- Test command-line argument parsing;
- Verify abort ratio validation;
- Test random abortion logic with different ratios.
Rejected Alternatives
None