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.

1

Setting Up PgBouncer

2

Create the Dockerfile

For a basic implementation, the Dockerfile is quite short:

FROM bitnami/pgbouncer:latest
COPY pgbouncer.key /opt/bitnami/pgbouncer/certs/pgbouncer.key
COPY pgbouncer.crt /opt/bitnami/pgbouncer/certs/pgbouncer.crt

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.

3

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.

4

Make an Endpoint for PgBouncer

This is commonly done by creating a TCP endpoint.

aptible endpoints:tcp:create --app pgbouncer CMD --internal

Instead of connecting to your database directly, you should configure your resources to connect to PgBouncer using the TCP endpoint.

5

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