The Booking That Existed in Frankfurt but Not in Virginia
Your airline-seat-booking platform runs active-active across three AWS regions (us-east-1, eu-central-1, ap-southeast-1) for low-latency reads and regional failover, with each region's database asynchronously replicating changes to the other two, typically within 200-400ms. A support ticket describes exactly the bug you feared: a customer books the last available seat on a flight via the eu-central-1 (Frankfurt) region, gets a confirmation, then immediately opens the same booking flow on their phone, which happens to route to us-east-1 (Virginia) because of a mobile carrier's DNS behavior -- and Virginia still shows the seat as available, because Frankfurt's write hadn't replicated there yet. A second customer in that 300ms window in Virginia also tries to book the same seat. You're asked to explain precisely why this happened given the async-replication design, and what you'd change so double-booking becomes structurally impossible for the "one seat, one owner" case specifically, without giving up multi-region active-active for everything else.