| This stuff is very subtle, but you have to consider all three transactions when applying the guarantees. If w1 and w2 overlap their execution then any serializable execution is strict serializable, so w1 must have finished before w2 began. In this case (2) applies and w1 must have the effect of executing before w2, to all observers, including r. If w1 and w2 are commutative then it doesn’t matter in what order they execute as they’re equivalent. If not, then at some point their dependency graphs intersect and will be/have been ordered wrt each other by the same restrictions. edit: in the example given in the Jepsen report, with Accord r would have to execute either before w1; after w1 and before w2; or after them both. This is because one of the following must occur: 1) r takes a dependency on both w1 and w2 and executes after them both; 2) r takes a dependency on only w1; w2 takes a dependency on r, so w2 executes after r, and r executes after w1 3) w1 and w2 both take a dependency on r, so that r executes before either |
Edit: Ah ok I see you edited it. Ok that makes sense if it works.