Data API Routes to Nearest Read Replica

04 Apr 2025

3 minute read

Today we’re releasing Data API requests routing to the nearest Read Replica by extending our API load balancer to handle geo-routing.

It’s an impactful improvement that will minimize request latency for your globally distributed applications. It’s only available today when experimental routing is enabled.

What is geo-routing?

Geo-routing automatically directs your Data API requests to the geographically closest read replica of your database, reducing latency and improving response times for your users around the world.

Previously, if you had read replicas in Frankfurt, Singapore, and Virginia, a user located in Europe may experience dramatically different latencies because they could be making requests to any of the replicas.

Our new geo-routing automatically connects users to the nearest read replica so the same user would only make requests to the read replica in the Frankfurt region.

How geo-routing works

Our geo-routing system uses geospatial algorithms to determine the optimal read replica for each request:

  1. Each incoming API request includes geolocation data from the network edge (specifically the cf.colo property, which provides the IATA airport code of the datacenter that received the request).
  2. We maintain a coordinate mapping system that associates each region where read replicas can be deployed with precise geospatial coordinates.
  3. When a request arrives, we calculate the distance between the network edge and each available read replica using the Haversine formula (which determines the great-circle distance between two points on a sphere using their longitudes and latitudes).
  4. The system automatically routes the request to the geographically closest read replica, minimizing network latency without requiring any configuration on your part.
  5. In cases where multiple databases exist in the same region we implement a round-robin strategy to ensure balanced load distribution.

The entire process is completely seamless to your application and users, requiring no changes to your code or configuration besides updating your project URL (<project_ref>-all.supabase.co) today.

To get the most from geo-routing, deploy read replicas in regions where your users are concentrated. The more strategically you place your read replicas, the more your users will benefit from reduced latency and improved response times.

Initial release and roadmap

As an initial release, geo-routing is available with the following limitations:

  • Currently limited to read-only Data API (PostgREST) requests
  • Only available via experimental routing

If you're already using our API load balancer with experimental routing enabled, there's nothing you need to do; geo-routing is automatically applied to your Data API requests.

Otherwise, you can enable this feature:

  1. Ensure your project is using the API load balancer endpoint (<project_ref>-all.supabase.co)
  2. Enable experimental routing (see experimental routing)

We're actively working on expanding geo-routing support to other Supabase products, such as Auth, Storage, and Realtime. Stay tuned for updates.

Get started today

As always, we welcome your feedback, let us know what you think!

Share this article

Build in a weekend, scale to millions