Hacker News new | past | comments | ask | show | jobs | submit login

> That is quite precisely idempotency.

Well, it's one way of implementing a kind of idempotency. But idempotency in general is more complicated than just deduping messages. For example, "Toggle the power state" is not idempotent because the result state depends on the initial state. You might think that "turn the power on" is idempotent, and by itself it is, but in conjunction with "turn the power off" it is not because the order in which they are processed matters. A truly idempotent message would be something like, "Insure that the number of on-off cycles at time T1 is N, at time T2 is N+1" etc.

Idempotency is in general more powerful and more complicated than deduping.




Sure, but you said that assigning unique ID's to messages and not executing the same ID twice was a "third option", besides establishing idempotency. I'm saying it's not a "third option", but instead it literally is "establishing idempotency".


Idempotency of message reception is different than idempotency of message execution.


I guess we'll just have to agree to disagree about that.

Here is a quote from the original article that supports my position:

"Therefore consumer applications will need to perform deduplication or handle incoming messages in an idempotent manner. ... The way we achieve exactly-once delivery in practice is by faking it. Either the messages themselves should be idempotent, meaning they can be applied more than once without adverse effects, or we remove the need for idempotency through deduplication."




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: