Estimate network latency between cloud regions across AWS, Azure, GCP, and OCI based on geographic distance.
Last verified: May 2026
Output will appear here...Real round-trip latency between two cloud regions is dominated by physical distance: light in fiber covers about 200 km per millisecond, and once you cross a continent or an ocean there is nothing your provider can do about it. The Cloud Region Latency Estimator computes the great-circle distance between any pair of AWS, Azure, GCP, or OCI regions and applies a realistic propagation-and-overhead factor to produce a lower-bound RTT estimate before you provision anything.
Your team is designing a multi-region MySQL deployment with synchronous semi-sync replication. The primary is in us-east-1; you are considering us-east-2 or us-west-2 as the replica region. The estimator gives 11ms RTT to us-east-2 and 65ms RTT to us-west-2. With semi-sync replication, every write blocks on replica acknowledgment, so 11ms adds 11ms to your write latency — tolerable. 65ms would make every write 6x slower. You pick us-east-2, then validate with a live ping test in staging before final commit.
For synchronous database replication, 5ms one-way (10ms round-trip) is the practical limit before commit latency becomes user-visible. That budget gets you about 1,000 km between regions — fine for us-east-1 to us-east-2, not fine for us-east-1 to us-west-2.
Inter-cloud latency is usually higher than intra-cloud latency between equivalent geographic points because traffic exits the source provider's network and traverses public peering before reaching the destination. Plan for 1.5-2x the geographic-baseline estimate on cross-provider links.
Each region's published coordinates (latitude, longitude) are stored in a lookup table. Great-circle distance between two regions is computed with the haversine formula. The distance is divided by the speed of light in fiber (~200,000 km/s) and multiplied by 1.3 to account for typical routing overhead, giving a realistic one-way propagation estimate. The result is doubled for round-trip and presented alongside the raw geographic distance for sanity-checking.
Was this tool helpful?
Disclaimer: This tool runs entirely in your browser. No data is sent to our servers. Always verify outputs before using them in production. AWS, Azure, and GCP are trademarks of their respective owners.