Exactly Once Delivery
Enable exactly once delivery guarantees.
To execute K2K, you must agree to the EULA and secure a free license.
Accept the EULA by setting license.acceptEula to true .
K2K uses at-least-once delivery by default, but it can be configured for exactly-once delivery. This tutorial will guide you on how to enable exactly-once delivery.
This tutorial assumes the following files exist (See Setting up for more details):
To ensure a clean start, execute this command to reset any prior configurations from earlier tutorials.
Enabling Exactly Once
To achieve exactly-once semantics, enable that option and set the idempotent flag on the producer instance as follows:
features:
exactlyOnce: enabled
....
target:
kafka:
producer:
"enable.idempotence": "true"
....
Last updated
Was this helpful?

