Microsoft in their documentation they state for the Consistent prefix consistency the following:
In consistent prefix option, updates that are returned contain some prefix of all the updates, with no gaps. Consistent prefix consistency level guarantees that reads never see out-of-order writes.
Two paragraphs bellow that, they state:
Below are the consistency guarantees for Consistent Prefix:
Consistency for clients in same region for an account with single write region = Consistent Prefix
Consistency for clients in different regions for an account with single write region = Consistent Prefix
Consistency for clients writing to a single region for an account with multiple write region = Consistent Prefix
Consistency for clients writing to multiple regions for an account with multiple write region = Eventual
I really don't understand how clients writing to multiple regions for an account with multiple write region can have Eventual consistency guaranty. Since the Consistent prefix consistency guarantees that reads never see out-of-order writes then the statement bellow (multiple writes) should be wrong as it guarantees Eventual consistency.
Can someone help me figure out what I am missing please?