I have 1 write region (e.g., US), and 2 read regions (e.g., US and EU). I have a collection, and I want to write into it, using different partition keys. I wonder, is there a specified order for data replication among different partitions in Cosmos DB? If I am not mistaken, according to Consistency levels in Azure Cosmos DB, the order is specified only within the same partition key. Is it correct?
For example, is it possible to have the following case:
- I write an
object 1withpartition key 1inUSregion - I write an
object 2withpartition key 2inUSregion - I read an
object 2inEUregion =>found - I read an
object 1inEUregion =>not found