All Posts In Rds Proxy

Setup AWS Lambda to Use Amazon RDS Proxy
Adam C. |
In this article, we would like to share some issues we had and resolved during setting up AWS Lambda to use Amazon RDS Proxy.
Troubleshooting on MySQL RDS Aborted Connection Error with AWS Lambda
Adam C. |
Starting for AWS Cloudwatch logs, we spent a week looking into 'Aborted Connection" errors on RDS. Finally, we figured out that although Lambda functions do not share a connection pool, the queries in the same function do share a connection pool, so we should keep on using the pool, but we should set the pool with min 0, so it could be destroyed without taking space. And the ultimate solution is to use Amazon RDS.