| Global Accelerator: You get static IP addresses that are broadly announced over the Global AWS backbone. That means that traffic gets onto the AWS network ASAP and that network takes it from there. It's really useful even if you're only in one region. Actually that's when it's most useful, because the more reliable AWS network can carry the traffic further for you. These static IP addresses are provided using BGP anycast. Anycast can be slow to respond to network events such as link failures. Networks have to propagate BGP updates when conditions change. To provide fault-tolerance, Global Accelerator can provide you with multiple static IPs, and these will be served by diverse paths. You can hardcode the static IPs in your DNS and firewall configurations, and use ordinary client retry behavior to drive the fault-tolerance. Route 53 Latency Based Routing and Multiple regions: Route 53 LBR uses constantly-running network latency measurements to figure out the best AWS region to send your traffic to. This traffic will generally enter the AWS backbone close to the target region, with your user's ISPs and their Internet transit providers carrying the traffic more of the distance. If you are running in many regions, then the average distance to users may be low enough that that network reliability is not a factor. Route 53 LBR uses DNS health-checks to respond to network events. These health-checks are often faster to respond than BGP anycast, so can be preferable for cases where clients do not retry quickly. Clients need to resolve DNS and it is harder to hardcode entries in firewall configurations etc. Overall: both make sense, and GA really shines when you are serving globally from a relatively small number of regions to begin with. |
When a Global Accelerator "instance" is created, it seems like it creates 2 new Public IP addresses per Region ( and then those are then BGP Anycast'ed from the Av.Zones and Edge Locations around that Region). Does this mean that:
GlobalAcceleratorInstance1
Region1:
?And will Route53 then allow me to create a record that points to a magic geo/lbr Alias record type to resolve these to some great additional benefit?
Or would the idea be to just create one pair of them in one region near my "origin" IP - and BGP Anycast takes care of the rest and basic DNS A records as usual?