Conceptual
Login

Idempotency

An operation is idempotent when applying it more than once has the same effect as applying it once, which is what makes retries and at-least-once delivery safe. In practice consumers achieve it with idempotency keys or by recording processed message IDs and discarding duplicates.