Azure / modern-web-app-pattern-dotnet

The Modern Web App Pattern is a set of objectives to help you apply an iterative change to modernize a cloud deployed monolith. This content builds on the Reliable Web App. This repo contains a reference implementation of a Modern Web App for .NET.
https://aka.ms/eap/mwa/dotnet/doc
MIT License
72 stars 7 forks source link

Implement multiregional Azure SQL #141

Closed KSchlobohm closed 1 year ago

KSchlobohm commented 1 year ago

The multiregional deployment should demonstrate how data is kept in sync between regions.

Azure SQL Database is used to store information about concerts, customers, and the tickets that they've purchased. This service stores this data and the relationships between this data to help customers shop for concerts and see their tickets when they login.

Without synchronizing this data, customers will not be able to see the tickets that they purchased. And, when the code runs in two regions it will randomly seed the data in a different order, so the concert details will not appear the same after a failover.

To address this concern we recommend two Azure SQL Features:

KSchlobohm commented 1 year ago

relates to https://github.com/Azure/reliable-web-app-pattern-dotnet/issues/44

KSchlobohm commented 1 year ago

relates to https://github.com/Azure/reliable-web-app-pattern-dotnet/issues/44

KSchlobohm commented 1 year ago

migrated to 1852450