Deploying PgBouncer on Aptible
How to deploy PgBouncer on Aptible
PgBouncer is a lightweight connection pooler for PostgreSQL which helps reduce resource usage and overhead by managing database connections. This guide provides a overview on how you can get started with PgBouncer on Aptible and Dockerfile Deploy.
Setting Up PgBouncer
Create the Dockerfile
For a basic implementation, the Dockerfile is quite short:
We’re using the PgBouncer image as a base, and then copying a certificate-key pair for TLS authentication to where PgBouncer expects them to be.
This means that your git repository needs to contain three files: the Dockerfile, pgbouncer.key
, and pgbouncer.crt
.
Deploy using Git Push
Now you’re ready to deploy. Since we’re working from a Dockerfile, follow the steps in Deploying with Git to push your repository to your app’s Git Remote to trigger a deploy.
Make an Endpoint for PgBouncer
This is commonly done by creating a TCP endpoint.
Instead of connecting to your database directly, you should configure your resources to connect to PgBouncer using the TCP endpoint.
Celebrate!
At this point, PgBouncer should be deployed. If you run into any issues, or have any questions, don’t hesitate to reach out to Aptible Support