Why P assumes send are reliable? #669
-
|
In P semantics says
Why is it safe to assume such semantics to develop a distributed system over an unreliable network? Isn't this leaving outside (although I understand the possibility to implement such a network abstraction exists) an important characteristic of distributed systems that is the impossibility to distinguish a slow node from a crashed one? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
you can model unreliable send like this: (example from tutorial) So send itself can be considered always reliable. |
Beta Was this translation helpful? Give feedback.
you can model unreliable send like this: (example from tutorial)
So send itself can be considered always reliable.