Replies: 4 comments 2 replies
-
@hwayne: Care to elaborate? I only see: |
Beta Was this translation helpful? Give feedback.
-
We enter the hot state when we add a new pending request and only leave it when
At every point, |
Beta Was this translation helpful? Give feedback.
-
@hwayne: I see now, with this missing piece of context:
No idea how you'd even check |
Beta Was this translation helpful? Give feedback.
-
In P, the liveness checking is defined for finite executions and for long running infinite execution it depends on the heuristics. Lets take this to discussion. |
Beta Was this translation helpful? Give feedback.
-
The liveness property is defined as:
However, the definition
Instead checks a stronger property: that eventually all the requests are responded to. If requests come in at the same rate they are resolved, then all withdraw requests are responded to, but the property will still fail.
More formally, the documentation implies it's
∀message: ◇responded
, but the actual property checked is◇(∀message: responded)
.Beta Was this translation helpful? Give feedback.
All reactions