effectively-once
RU: effectively-once
An end-to-end processing guarantee achieved by combining at-least-once delivery with idempotent consumers or deduplication, so each message produces exactly one observable side-effect despite possible redelivery. True exactly-once delivery is impossible over unreliable networks; effectively-once is the practical substitute. Kafka achieves it by pairing an idempotent producer with atomic offset commits inside a transaction.