DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
- producer.send("output-A", record)
- Source Component:
TransactionManager(Client) - Action: Sends
AddPartitionsToTxnRequest(["output-A-0"]). - State Change: Updates local state to
TransactionMetadata.topicPartitions = {output-A-0}.
- Source Component:
- producer.sendShareAcknowledgementsToTransaction(acks, meta)
- Source Component:
TransactionManager(Client) ---→KafkaApis(Broker Core) - Action: Sends
TxnShareAcknowledgeRequestto Broker 5 (theSharePartitionleader - lets say it is broker 5). - Broker Execution:
KafkaApisintercepts the request and performs two background operations:- Resolves the state partition:
shareCoordinatorPartition = (__share_group_state, partitionFor(groupId)). - First call txnCoordinator.handleAddPartitionsToTransaction(transactionalId, producerId, producerEpoch, Set.of(shareCoordinatorPartition), callback, TV_2, requestLocal)
- Then callback → Calls
txnCoordinator.handleAddPartitionsToTransactionto dynamically register__share_group_state-Nin__transaction_state. - persists to
__transaction_stateviaTransactionLogValue:topicPartitions = {output-A-0, __share_group_state-N}
- Then callback → Calls
- Resolves the state partition:
- State Change:
TransactionMetadatanow tracks bothtopicPartitions = {output-A-0, __share_group_state-N}. - Staging Phase: Only on success,
SharePartitionManagerstages the transactional acknowledgements, transitioning the internalInFlightStatetoTX_PENDING.
- Source Component:
- producer.commitTransaction()
- Source Component: Client ------->
TransactionCoordinator(Broker Core) - Action: Sends
EndTxnRequest(COMMIT). - Execution:
TxnCoordreads the topic partitions from state and resolves the physical leaders viaMetadataCache:output-A-0--------> Broker 3__share_group_state-N-----→ Broker 5
- Action: Dispatches
WriteTxnMarkersto both brokers.
- Source Component: Client ------->
- Each broker handles the transaction markers
- Execution on Broker 3 (Output Side):
- Appends the
COMMITcontrol batch to theoutput-A-0log. - KIP-1289 hook runs (no-op since no
TX_PENDINGhere)
- Appends the
- Execution on Broker 5 (Share Side):
- Appends the
COMMITcontrol batch to the__share_group_state-Nlog. - Fires the KIP-1289 hook: Triggers
sharePartitionManager.applyTxnMarker(COMMIT). - Scans the internal
partitionCache, finds the matchingTX_PENDINGflight states, and commits them toACKNOWLEDGED.
- Appends the
- Execution on Broker 3 (Output Side):
- Transaction Completion
- Action: Both brokers return successful ACKs back to
TxnCoord. - State Change:
TxnCoordtransitions the state toCOMPLETE_COMMIT. - Result: The client-side blocking
producer.commitTransaction()call returns successfully.
- Action: Both brokers return successful ACKs back to
...
| Code Block |
|---|
// Kafka-as-destination path (true EOS via TxnShareAcknowledge):
batch boundary (or per-record, depending on tx granularity):
producer.beginTransaction()
for each (record, output) in batch:
producer.send(destinationTopic, output)
producer.sendShareAcknowledgementsToTransaction(
ackMap, // record→ACCEPT for processed records
shareConsumer.shareGroupMetadata()
)
producer.commitTransaction()
// No separate consumer.acknowledge() — the ACK is in the transaction.
-------------------
// Pure-external-sink path (at-least-once + idempotent destination):[this KIP is not changin anything of this flow]
worker thread per record:
output = process(record)
externalSink.write(output, idempotencyKey) // user task does this
consumer.acknowledgeAsync(record, ACCEPT)
.thenAccept(_ -> markComplete(record)) |
...
Corner cases
Here are your corner cases formatted using the same clean, un-phased, human-style layout. The wording, titles, technical specifications, and internal error codes remain exactly as provided.
1. Broker Crash During TX_PENDING (in-memory state)
- Scenario: broker stages TX_PENDING then crashes before marker arrives.
- Behavior: TX_PENDING is in-memory only (
__share_group_stateschema unchanged in v1); records replay as ACQUIRED/AVAILABLE after broker restart and are redelivered. - Guarantee: no data loss; at-least-once on broker-crash window (existing share-group baseline).
- Future: persistent TX_PENDING via extending
ShareSnapshotValue.DeliveryStatedeferred to a follow-up KIP.
2. TxnCoord Registration Fails (COORDINATOR_NOT_AVAILABLE, NOT_COORDINATOR)
- Scenario: broker-internal
AddPartitionsToTxnreturns retriable error. - Behavior: broker does NOT stage; returns error to producer; producer enters abortable state.
- Recovery: user catches
KafkaException→abortTransaction()→ retries.
3. Producer Fenced Mid-Stage (PRODUCER_FENCED, INVALID_PRODUCER_EPOCH)
- Scenario: zombie producer A (epoch 1) sends
TxnShareAcknowledgeafter producer B (epoch 2) has been initialized. - Behavior: TxnCoord registration rejects with fencing error → no staging happens → producer A becomes fatal.
- Late-arriving marker safety: per-
InFlightState(stagedProducerId,stagedProducerEpoch) filter rejects mismatched markers; idempotent.
5. Duplicate WriteTxnMarkers Delivery
- Scenario: TxnCoord retries marker after network failure; broker receives same marker twice.
- Behavior: second invocation finds state != TX_PENDING (already resolved) → no-op.
- Guarantee: idempotent by state filter — verified in
InFlightStateTxnTest.
6. Acquisition Lock Expiry While TX_PENDING
- Scenario: transaction stages records but stalls; lock duration expires before commit/abort.
- Behavior: lock timer detects TX_PENDING with expired lock → reverts to ACQUIRED → re-acquirable; subsequent marker for the stale staging is filtered out (epoch mismatch).
- Configuration:
group.share.record.lock.duration.ms(default 30s; per share group).
7. Transaction Timeout While TX_PENDING (transaction.timeout.ms)
- Scenario: producer crashes after staging; TxnCoord detects abandoned transaction via timeout.
- Behavior: TxnCoord auto-sends
WriteTxnMarkers(ABORT); broker reverts TX_PENDING → ACQUIRED → AVAILABLE on next lock cycle. No data loss; eventual redelivery.
8. Stale Member Epoch (STALE_MEMBER_EPOCH, UNKNOWN_MEMBER_ID)
- Scenario: rebalance changes
memberEpochbetweenshareGroupMetadata()snapshot andsendShareAcksToTransaction()call. - Behavior: broker compares request
memberEpochwith currentSharePartitionowner; mismatch → returnsSTALE_MEMBER_EPOCH; no staging. - Recovery: abortable; user retries the entire read-process-write loop with a fresh snapshot.
9. Mixed-Version Cluster During Rolling Upgrade
- Scenario: some brokers lack apiKey 93 (
TxnShareAcknowledge). - Behavior: producer probes
ApiVersions; if apiKey 93 absent on any broker →UnsupportedVersionExceptionthrown synchronously, no bytes on wire. - Recovery: user must abort the transaction (output-side
AddPartitionsToTxnstill needs cleanup). - Gating:
share.version=2finalized feature flag controls broker advertisement.
10. Invalid Acknowledge Type Inside Transaction
- Scenario: producer sends
AcknowledgeType.RELEASE(2),RENEW(4), orGAP(0) insidesendShareAcksToTransaction. - Behavior: broker rejects with
INVALID_RECORD_STATE; no staging. - Allowed values: only
ACCEPT(1) andREJECT(3) — release/renew/gap have no transactional semantics.
11. Partial Multi-Partition Stage Failure
- Scenario: producer stages on partitions A and B; A succeeds, B fails.
- Behavior: per-partition 2PC rollback — already-staged records on A are reverted to ACQUIRED before the response returns (commit 8 on the branch).
- Result: all-or-nothing per call; user sees error → aborts → retries.
- Guarantee: no partial commit; clean rollback semantics.
12. Leader Change for __share_group_state-N Between Stage and Commit
- Scenario: share-coordinator partition leadership moves from broker 5 to broker 7 between staging and
WriteTxnMarkersdispatch. - Behavior: TxnCoord re-resolves leader at commit time via
MetadataCache→ marker goes to broker 7; broker 7's in-memorypartitionCachedoes NOT contain the original TX_PENDING state. - Limitation in this intial version: TX_PENDING lost on share-coordinator leadership change (same root cause as Corner Case 1); lock-timeout reverts records; redelivery.
- Future: persistent TX_PENDING closes this case as well.
13. Transaction Aborted Without Markers Reaching Broker
- Scenario: transaction aborts but broker hosting TX_PENDING is partitioned from TxnCoord.
- Behavior: lock timeout (Corner Case 6) eventually reverts; subsequent late-arriving marker is no-op (state already AVAILABLE or epoch mismatched).
- Convergence guaranteed.
14. Concurrent Transactions From Same Producer (Different Epochs)
- Scenario: producer rapidly bumps epoch; old in-flight
TxnShareAcknowledgearrives with stale epoch. - Behavior: TxnCoord rejects with
PRODUCER_FENCED; broker never stages. Per-record fencing on the state machine prevents any stale marker from resolving newer staging.
...
Note: We can persist the record state and get rid of case 1 in follow up KIP.
Compatibility, Deprecation, and Migration Plan
Zero Breaking Changes: Current
implicitandexplicitmodes remain the default and continue to function as-is.Opt-in Requirement: Users must explicitly enable the new mode.
...
Test Plan
The verification strategy focuses on state machine integrity and fault tolerance under high-concurrency and failure scenarios.
...