RedwoodJS ❤️ #Hacktoberfest

RedwoodJS

v0.20.0

# Connection Pooling

Production Redwood apps should enable connection pooling in order to properly scale with your Serverless functions.

# Heroku

For Postgres, see Postgres Connection Pooling.

Heroku does not officially support MySQL.

# Digital Ocean

For Postgres, see How to Manage Connection Pools

Connection Pooling for MySQL is not yet supported.

# AWS

Use Amazon RDS Proxy for MySQL or PostgreSQL.

From the AWS Docs:

Your RDS Proxy must be in the same VPC as the database. The proxy can't be publicly accessible.

Because of this limitation, with out-of-the-box configuration, you can only use RDS Proxy if you're deploying your Lambda Functions to the same AWS account. Alternatively, you can use RDS directly, but you might require larger instances to handle your production traffic and the number of concurrent connections.

# Why Connection Pooling?

Relational databases have a maximum number of concurrent client connections.

  • Postgres allows 100 by default
  • MySQL allows 151 by default

In a traditional server environment, you would need a large amount of traffic (and therefore web servers) to exhaust these connections, since each web server instance typically leverages a single connection.

In a Serverless environment, each function connects directly to the database, which can exhaust limits quickly. To prevent connection errors, you should add a connection pooling service in front of your database. Think of it as a load balancer.