Live Streaming the Super Bowl: The Art of Scaling Across Multiple Cloud Regions(yugabyte.com)
yugabyte.com
Live Streaming the Super Bowl: The Art of Scaling Across Multiple Cloud Regions
https://www.yugabyte.com/blog/live-streaming-super-bowl-scale-multi-cloud-region/
1 comments
What are some of the latency optimization approaches for multi master and multi -region deployments? seems like a very interesting topology, have to read more about it.
(I'm the author of the article)
There are several design patterns depending on whether you need to optimize the latency for reads, writes, or both.
If it's all abour reads, then you can use follower reads (as shown in the article) or read replicas. If you also need writes, then a geo-partitioned deployment or standalone database instances for each region would be good starting points.
There are several design patterns depending on whether you need to optimize the latency for reads, writes, or both.
If it's all abour reads, then you can use follower reads (as shown in the article) or read replicas. If you also need writes, then a geo-partitioned deployment or standalone database instances for each region would be good starting points.
Here is a detailed article covering various design patterns for multi-region deployments: https://www.yugabyte.com/blog/multi-region-database-deployme...