🌍 Multi-Region Sizing Impact
In multi-region deployments, network latency (RTT) becomes a key factor in write performance. Every write must coordinate across replicas (Raft quorum), which increases:
- ● Write latency
- ● CPU overhead
- ● Concurrency requirements
Example: A single-region deployment with ~2 ms RTT can complete writes very quickly.
In contrast, a multi-region deployment with ~60 ms RTT means each write must wait significantly longer for quorum acknowledgment.
To maintain throughput, the system must process more concurrent operations… which requires more CPU cores.
👉 As a result, multi-region clusters typically require more cores to achieve the same throughput as single-region deployments.