Computer >> Computer tutorials >  >> Programming >> Database

Understanding Amazon Aurora endpoints

If you’ve ever used Aurora Read Replicas, you may have noticed that there are several different endpoints available. The Cluster Endpoint, the Reader Endpoint, and Instance Endpoints… with all of these options, how do you know which one to use and when? As with any non-trivial system, the answer is… it depends. In this blogpost, we’ll look at the different endpoints, use-cases for them, and the trade-offs that come with those design decisions.

First, let’s touch on the different endpoints available with Amazon Aurora.

  • Cluster Endpoint – The Cluster Endpoint connect your application to the current primary DB instance for that DB cluster. Your application can both read and write to this instance.

  • Reader Endpoint – The Reader Endpoint load-balances connections across the pool of available Read Replicas. Offload read queries here, reducing load on your primary DB instance.

  • Instance Endpoints – An Instance Endpoint connects to a specific instance in the cluster. Clients can have fine-grained control over query allocation, rather than having Amazon Aurora handle connection distribution.

I know what you’re thinking… I’ll just connect to the Cluster Endpoint for writes, the Reader Endpoint for all reads, and why would I ever connect to a specific instance – that bypasses the built-in fault tolerance and is asking for trouble, right? As eluded to earlier, your application and its interaction with Aurora create a complex (or at least a non-trivial) system. With complex systems, one-size fits all is not a rule to rely on… unless you enjoy calls in the middle of the night.

Let’s go through some scenarios and look at when and where to use the various endpoints.

Immediate consistency

Some applications expect the data to be immediately consistent. When these applications write data, they immediately read the data in strict compliance with any of the many design patterns that say, “rely on the model, not your local data”. Amazon Aurora is ACID-compliant; a read from the Cluster Endpoint immediately after a successful write commit will retrieve the expected data (assuming another transaction did not modify the data before the subsequent read).

Where the trouble happens is when writes are sent to the Cluster Endpoint and reads are made to the Reader Endpoint. This is due to the latency between writing data and when it becomes visible to the readers. While the replication latency is under 100 milliseconds, it isn’t instantaneous, leading to a race condition. If you have a scenario where you need to immediately read data after writing, use the Cluster Endpoint for both reads and writes. It should be noted, if additional performance is required, you must increase the size of your primary instance.

However, if eventual consistency is acceptable and your application supports it, using the Reader Endpoint is a great way to reduce the load on your primary instance.

Offloading reads

If immediate reads after writes are not ok, what’s the point of having a separate a Reader Endpoint? There are many use-cases where slightly inconsistent data is not an issue. For example: daily reporting. When running batch jobs to generate reports from yesterday’s data, a 100-millisecond replication lag is inconsequential. It’s easy to imagine other scenarios, such as product descriptions on an ecommerce site… you are more likely to have stale data in the user’s browser than be impacted by the replication lag.

Generally, read-heavy workloads that do not rely on immediate consistency should consider using the Reader Endpoint.

Non-uniform workloads

There are situations where it makes sense to use Instance Endpoints. Let’s say you have an application that has a number of stateless microservices behind an Elastic Load Balancer. In this situation, it is reasonable to assume that queries are evenly distributed across the clients, and therefore, across the Read Replicas – when using the Reader Endpoint.

But what about the situation where the workload of each client is not uniformly distributed? If a reporting service is added to the mix, one Read Replica has a disproportionally high load as compared to the others. If the before-mentioned microservices also use this Read Replica, there is a high probability of poor query performance when querying the instance used by the reporting service. One approach to avoid this is to manage the distribution of connections on the client side, rather than letting Amazon Aurora do this for you. Luckily, this is easily done by using Instance Endpoints instead of the Reader Endpoint. With the MariaDB Connector/J for Aurora for MySQL or Fast Failover with Amazon Aurora PostgreSQL, the driver can be made aware of the individual instances you want to use as Read Replicas, allowing the driver to directly manage how queries are distributed to individual instances.

Manage DNS caching

In addition to understanding the nature of your workloads, it is important to understand how connections are allocated to provide Aurora’s High Availability and the Reader Endpoint load balancing.

Management of automatic Cluster Endpoint failover and Reader Endpoint load balancing are handled through DNS (Amazon Route 53), not at the IP, TCP, or database client protocol layers. Handling distribution of connections through DNS means your that application must make a DNS query for each new connection request. Applications that use DNS caching should adjust the cache timeout to match the DNS record TTL for Amazon Aurora. Caching DNS responses longer than the Aurora DNS record TTL will result in a couple of error conditions. If there is a High-Availability (HA) failover event, that is, a Read Replica is promoted to Primary, a cached DNS response will mean your application will attempt to reconnect to the old, failed instance. In the case of the Reader Endpoint, caching the DNS response results in multiple connections going to a specific Read Replica instead of being distributed across the available Read Replicas.

Wrapping up

As we can see, there is no one-size-fits-all solution when it comes to a non-trivial production workload. If your application needs immediate consistency, then make sure both reads and writes are sent to the Cluster Endpoint. When read queries can handle a little replication lag, offload read queries to the Reader Endpoint. If you can use Read Replicas but your queries are not uniformly distributed across all clients, then use the Instance Endpoints and manage the distribution of connections on the client side. Just don’t forget, if your application uses DNS caching with cache timeouts longer than the DNS record TTL, endpoints appear to not behave as expected during Cluster Endpoint HA failovers or when using the Reader Endpoint.

Understanding the nature of your application, how the Aurora Endpoints behave, and correctly applying that knowledge will lead to a more robust application environment, which is very important to you and your customers. No one wants an outage call in the middle of the night.

Use the Feedback tab to make any comments or ask questions.