[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[tlaplus] Re: Consensus spec safety in Paxos example



Hi Pavel,

If I understood you correctly, you're saying the formula `Inv` doesn't represent a consensus safety property: this invariant is too weak, and it's satisfied by a sequence of assignments for `chosen` such as {} -> {1} -> {} -> {2} -> {2} -> etc.

That's true. In fact, there's an infinite number of possible behaviors in the universe such that `Inv` is True, but these behaviors are irrelevant. It depends on what specification described these behaviors in the first place, and that `chosen` has the same meaning in both specifications. Meaning is essential.

> To demonstrate that, we can change the `Next` action in such a way that the invariant will still hold. For example, if we can allow a transition from {v} back to {}, the invariant is still true, but the safety is broken.

Indeed, but that wouldn't be a consensus specification anymore.

> The safety invariant here has to have a temporal aspect: once the chosen set is non-empty, it stays so.

What is so elegant about TLA+ is that the “temporal aspect” you mentioned is the specification itself. In other words, Consensus' Spec expresses that “once the chosen set is non-empty, it stays so”:  action `Next` in `Consensus` selects one value, then stutters forever.

Best,
Jones

P.S. I'd expand on the true danger of false positives through bad refinement mappings, but it's late here, and I need to sleep haha


On Wednesday 8 May 2024 at 19:51:00 UTC-3 Pavel Kalinnikov wrote:
Hi Jones,

Your explanation matches my understanding, however I think the `Inv` does not correctly represent a consensus safety property. To demonstrate that, we can change the `Next` action in such a way that the invariant will still hold. For example, if we can allow a transition from {v} back to {}, the invariant is still true, but the safety is broken.

The safety invariant here has to have a temporal aspect: once the chosen set is non-empty, it stays so.

I.e. the comment "Safety: At most one value is chosen" seems misleading here. It does express some invariant, but this invariant does not on its own guarantee safety.

Thank you,
Pavel

On Wednesday, May 8, 2024 at 10:58:17 PM UTC+1 Jones Martins wrote:
Hi Pavel,

The Voting module instantiates the Consensus module to prove that Voting's Spec implies Consensus' Spec.

The consensus specification itself is pretty abstract.
Init expresses that chosen = {} is true in the first state of every behavior.
Next expresses that if chosen = {} is true, then chosen' = { <some value> }.
This means that, when some value has been chosen, it never changes again, so the original  `Inv` invariant is strong enough.

By the way, `Inv` can't be augmented as you suggested. Invariants are state predicates, and state predicates don't contain primed variables.

Best,
Jones
On Wednesday 8 May 2024 at 16:41:29 UTC-3 Pavel Kalinnikov wrote:
Should this line

       /\ Cardinality(chosen) \leq 1

be augmented with something like:

       /\ Cardinality(chosen') \leq 1
       /\ chosen = {} \/ chosen' = chosen

On Wednesday, May 8, 2024 at 8:24:27 PM UTC+1 Pavel Kalinnikov wrote:
Hello,

I am looking at the Consensus spec in tlaplus examples repo, which specifies the single-value consensus problem.

The Init/Next spec in this file correctly specifies consensus, because it precludes the chosen set from changing after it got to contain exactly one value.

What value does the the safety invariant in lines 36-37, and the theorem that follows it, bring to this spec? If I am interpreting it correctly, the invariant does not fully specify the safety property: it allows a sequence in which a value is chosen, then another value replaces it (the size of the chosen set is still 1, so the invariant remains true). Or a value is chosen, then the set is emptied, then another value is chosen; etc.

Is the value of this invariant+theorem in just demonstrating an interesting property? Is it not strictly needed to be in this spec?

Is there a way to fix this invariant, so that it fully represents the consensus safety property (rather than partially, like it seems).

Thank you,
Pavel




--
You received this message because you are subscribed to the Google Groups "tlaplus" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tlaplus+unsubscribe@xxxxxxxxxxxxxxxx.
To view this discussion on the web visit https://groups.google.com/d/msgid/tlaplus/fa542e83-de10-46f2-b816-e32d00fc4754n%40googlegroups.com.