Comment on How to think about durable executionparentComments−teeray8moThis means "the work" isn't done unless "recording the work" is also done. It also means they can be undone together.That's just another way of saying that the step in question is idempotent.−jedberg8moNo it's different. Idempotent would mean that it can be replayed with no effect. What I'm saying is that this guarantees exactly once execution, taking advantage of the database transactions that make multiple data updates idempotent together.
Comments
That's just another way of saying that the step in question is idempotent.
No it's different. Idempotent would mean that it can be replayed with no effect. What I'm saying is that this guarantees exactly once execution, taking advantage of the database transactions that make multiple data updates idempotent together.