Does Cloudflare provide a service similar to AWS Route 53 or GCP Cloud DNS, where you can route traffic based on geolocation without going via a Load Balancer?
For example, a user in New York queries global.app.com
, that gets routed to useast.app.com
(instead of uswest.app.com
or europe.app.com
) and then gets routed via A record to either useast-ipaddress-1
or useast-ipaddress-2
.
This is needed for long-lived TCP and UDP sessions where the user remaining connected to the same endpoint is essential, we do not want to use a load balancer - looking for an alternative to Amazon’s Route 53 or Google’s Cloud DNS. Thanks!