Questions tagged [amazon-rds-proxy]
89 questions
5
votes
0 answers
Sequelize with AWS RDS Proxy Connection Issues
I've setup a Serverless API via AWS API Gateway and AWS Lambda thet leverages AWS RDS Proxy to connect to a RDS MySQL Database.
I'm opening the connection on every Lambda Execution by performing these operations:
sequelize = new…

Michele Festini
- 137
- 9
4
votes
2 answers
AWS RDS Proxy configuration
I need to create a VPC + RDS Postgres DB + RDS Proxy with private subnets, I'm setting up everything with CloudFormation using serverless.
I'm able to configure everything except the RDS Proxy, when I run serverless deploy the deployment hangs when…

marcos
- 4,473
- 1
- 10
- 24
4
votes
1 answer
RDS proxy gives empty dropdown for database, when using RDS postgreSQL 13.2
While creating an aws RDS proxy, when i go to database dropdown it remains empty, i want to use the latest version of RDS postgreSQL 13.2. How to do this?

a-k
- 41
- 5
4
votes
0 answers
AWS rds proxy not releasing connection to db
I have setup a rds proxy in between my webapp and rds mysql. However, when my webapp releases connection, rds proxy keep holding it. What is the parameter that decide the time that rds proxy release the connection to db? I provided 2 images, the…

Huong
- 91
- 6
4
votes
2 answers
RDS Proxy Target groups Unavailable
I have just created RDS Proxy by Cloud Formation
In Proxies dashboard, it showed RDS proxy is available, but Target groups are unavailable, I can't debug this and got stuck in Cloud Formation update state
This is my Cloud formation config,
I used…

Thanh Long Lê
- 77
- 2
- 7
4
votes
0 answers
How to setup RDS proxy to lambda in serverless framework
I've already created the RDS proxy and wanted to attach something like this.
provider:
name: aws
rds-proxy:
arn: arn:aws:xxxxxx
Or any cloudformation syntax which I can extend in Resources section.

bashIt
- 1,006
- 1
- 10
- 26
3
votes
0 answers
AWS RDS proxy performs bad with the read-only endpoint
I have an AWS RDS aurora cluster with couple of read replicas. I am using an RDS proxy instance for connecting to the database for high availability.
For testing the failover performance, I wrote a simple application that constantly ping the…

Anubis
- 6,995
- 14
- 56
- 87
3
votes
0 answers
Connect to a AWS RDS Proxy in Laravel
I have a Laravel application deployed to AWS Lambda using Laravel Vapor. I want to use RDS Proxy instead of directly connecting to the RDS instance.
Laravel Vapor lets you manage a database and proxy from the dashboard and CLI. But, I am not using…

Vikas Roy
- 854
- 2
- 10
- 25
3
votes
1 answer
Sequelize with AWS RDS Proxy
I am trying to use the AWS RDS Proxy on my lambda to proxy our database (Aurora MySQL). I wasn't able to find any specific instructions for Sequelize, but it seemed like all I needed for RDS proxy to work is to create a signer, use it to get my…

Tyson Cadenhead
- 352
- 3
- 8
3
votes
1 answer
RDS Aurora Proxy connection fails with "Failed to Connect to MySQL"
So basically - I've enabled RDS Proxy (still in Preview) for my Aurora MySQL DB and the Proxy is created and available for use.
The Proxy uses a DB User/Pwd combination sourced from Secrets
Manager to connect to the MySQL DB.
The Proxy can be…

kiran01bm
- 682
- 7
- 18
2
votes
0 answers
AWS RDS DBProxyTarget unavailable with "Waiting for proxy to scale to desired capacity"
I was following this tutorial to connect to an RDS(deployed on AWS) via a proxy.
However, after creation of the proxy through AWS console, the TargetGroup remained unavailable(for well over 4 hours)
A stackoverflow answer suggested describing the…

Sudipto Ghosh
- 21
- 1
2
votes
1 answer
How much of an issue is connection pinning with RDS Proxy?
I'm using Postgres with row-level security to lock down all queries across tables to a particular tenancy. I do this by calling a SET app.tenant_id = x; statement each time my service opens a connection, and my RLS policies use this session-level…

Barguast
- 5,926
- 9
- 43
- 73
2
votes
0 answers
how to configure Spring Boot HikariPool for use with AWS RDS Proxy?
I'm using RDS Proxy Endpoint(Writer/Reader, Reader).
1 writer-instance and 1 reader-instance are running. reader-instance CPU's nearly 90%.
so i've been trying to add 1 more reader instance.
I expected it distribute traffic immediately,…

JP Park
- 21
- 2
2
votes
2 answers
Database access denied for AWS RDS proxy
I have setup a RDS proxy for Aurora DB. I am able to connect to the RDS proxy endpoint but not able to perform any operations.
For e.g if I do show processlist; I get below error:
ERROR 1045 (28000): Database Access denied for user…

Naishav Mehta
- 306
- 1
- 2
- 14
2
votes
0 answers
Stuck while establishing connection lambda with RDS proxy in Nodejs with same VPC
I have created three security groups in the same VPC
For lambda-SG gave an inbound rule for RDS-SG, RDS-Proxy, RDS-Lamda with port 5432
For RDS-SG gave 3 rules same above,
For RDS-Proxy also gave the same rules
when I went to the cloud watch of…

muhammad adeel
- 87
- 3