Can AWS RDS Proxy be paired with read replication instance directly?

Viewed 3249

I created an RDS Proxy with existing Aurora PostgreSQL cluster.

But I want to pair the proxy with specific read replica instance of the cluster. Is that possible?

3 Answers

Try RDS Proxy Endpoint, which allows you to get use of read replicas:

You can create and connect to read-only endpoints called reader endpoints when you use RDS Proxy with Aurora clusters. These reader endpoints help to improve the read scalability of your query-intensive applications. Reader endpoints also help to improve the availability of your connections if a reader DB instance in your cluster becomes unavailable.

https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-proxy.html#rds-proxy-endpoints

Related