| ▲ | jayd16 6 hours ago | |||||||
It's a bit of trick that the outbox to queue part of it likely needs to support "at least once but duplicates possible" into the queue. | ||||||||
| ▲ | mrkeen 5 hours ago | parent | next [-] | |||||||
"Send multiple times from D to Q and deduplicate with a UUID" (idempotency) is well short of "insert into both D and Q or neither" (atomicity) | ||||||||
| ||||||||
| ▲ | KraftyOne 5 hours ago | parent | prev [-] | |||||||
Every item will be written to the queue exactly once (as the update is transactional). Queue processing may need at-least-once semantics, yes, depending on what exactly you're doing. | ||||||||
| ||||||||