
PgDog is an open source proxy for scaling PostgreSQL. It supports connection pooling, load balancing queries and sharding entire databases. Written in Rust, PgDog is fast, secure and can manage thousands of connections on commodity hardware.
Documentation
📘 PgDog documentation can be found here. Any questions? Chat with us on Discord.
Enterprise edition
🏢 Enterprise edition (EE) documentation is available here. Changelog is available here.
Quick start
Kubernetes
Helm chart is here. To install it, run:
helm repo add pgdogdev https://helm.pgdog.dev
helm install pgdog pgdogdev/pgdog
AWS
If you're using AWS RDS, you can deploy PgDog using one of two supported methods:
- Helm chart with EKS, or a self-hosted Kubernetes cluster
- Terraform module to deploy PgDog on ECS
Try in Docker
You can try PgDog quickly using Docker. Install Docker Compose and run:
docker-compose up
Once started, you can connect to PgDog with psql or any other PostgreSQL client:
PGPASSWORD=postgres psql -h 127.0.0.1 -p 6432 -U postgres
The demo comes with 3 shards and 2 sharded tables:
INSERT INTO users (id, email) VALUES (1, '[email protected]');
INSERT INTO payments (id, user_id, amount) VALUES (1, 1, 100.0);
SELECT * FROM users WHERE id = 1;
SELECT * FROM payments WHERE user_id = 1;
Features
All PgDog features are configurable and can be turned on and off. PgDog requires 2 configuration files to operate:
pgdog.toml: hosts, sharding configuration, and other settingsusers.toml: usernames and passwords
Example
Most options have reasonable defaults, so a basic configuration for a single user and database running on the same machine is pretty short:
pgdog.toml
[general]
port = 6432
default_pool_size = 10
[[databases]]
name = "pgdog"
host = "127.0.0.1"
users.toml
[[users]]
name = "alice"
database = "pgdog"
password = "hunter2"
If a database in pgdog.toml doesn't have a user in users.toml, the connection pool for that database will not be created and users won't be able to connect.
If you'd like to try it out locally, create the database and user like so:
CREATE DATABASE pgdog;
CREATE USER pgdog PASSWORD 'pgdog' LOGIN;
Transaction pooling
Like PgBouncer, PgDog supports transaction (and session) pooling, allowing thousands of clients to use just a few PostgreSQL server connections.
Unlike PgBouncer, PgDog can parse and handle SET statements and startup options, ensuring session state is set correctly when sharing server connections between clients with different parameters.
PgDog also has more advanced connection recovery options, like automatic abandoned transaction rollbacks and connection re-synchronization to avoid churning server connections during an application crash.
Load balancer
PgDog is an application layer (OSI Level 7) load balancer for PostgreSQL. It understands the Postgres protocol, can proxy multiple replicas (and primary) and distributes transactions evenly between databases. The load balancer supports 3 strategies: round robin, random and least active connections.
Example
The load balancer is enabled automatically when a database has more than one host:
[[databases]]
name = "prod"
host = "10.0.0.1"
role = "primary"
[[databases]]
name = "prod"
host = "10.0.0.2"
role = "replica"
Health checks
PgDog maintains a real-time list of healthy hosts. When a database fails a health check, it's removed from the active rotation and queries are re-routed to other replicas. This works like an HTTP load balancer, except it's for your database.
Health checks maximize database availability and protect against bad network connections, temporary hardware failures or misconfiguration.
Single endpoint
PgDog uses pg_raw_parse, which includes the PostgreSQL native parser. By parsing queries, PgDog can detect writes (e.g. INSERT, UPDATE, CREATE TABLE, etc.) and send them to the primary, leaving the replicas to serve reads (SELECT). This allows applications to connect to the same PgDog deployment for both reads and writes.
Transactions
📘 Load balancer & transactions
Transactions can execute multiple statements, so in a primary & replica configuration, PgDog routes them to the primary. Clients can indicate a transaction is read-only, in which case PgDog will send it to a replica:
BEGIN READ ONLY;
-- This goes to a replica.
SELECT * FROM users LIMIT 1;
COMMIT;
Failover
📘 Failover
PgDog monitors Postgres replication state and can automatically redirect writes to a different database if a replica is promoted. This doesn't replace tools like Patroni that actually orchestrate failovers. You can use PgDog alongside Patroni (or AWS RDS or other managed Postgres host), to gracefully failover live traffic.
Example
To enable failover, set all database role attributes to auto and enable replication monitoring (lsn_check_delay setting):
[general]
lsn_check_delay = 0
[[databases]]
name = "prod"
host = "10.0.0.1"
role = "auto"
[[databases]]
name = "prod"
host = "10.0.0.2"
role = "auto"
Authentication
PgDog supports five authentication methods:
- Password-based
- AWS RDS IAM
- Azure Workload Identity
- HashiCorp Vault dynamic credentials
- HashiCorp Vault static role credentials
Password-based authentication
Password-based authentication allows for clients to authenticate to PgDog and for PgDog to authenticate to PostgreSQL. It currently supports the following password hashing algorithms:
- SCRAM-SHA-256
- MD5
- Plain
RDS IAM backend authentication
PgDog can keep client-to-PgDog authentication unchanged while using AWS RDS IAM tokens for PgDog-to-PostgreSQL authentication on a per-user basis.
Example
[[users]]
name = "alice"
database = "pgdog"
password = "client-password"
server_auth = "rds_iam"
# Optional; PgDog infers region from *.region.rds.amazonaws.com(.cn) hostnames when omitted.
# server_iam_region = "us-east-1"
When any user has server_auth = "rds_iam", the following settings must be configured as well:
tls_verifymust not be"disabled".passthrough_authmust be"disabled".
Azure Workload Identity authentication
PgDog can also use Azure Workload Identity for PgDog-to-PostgreSQL authentication, while keeping client-to-PgDog authentication unchanged. This is configured on a per-user basis, similarly to RDS IAM:
Example
[[users]]
name = "alice"
database = "pgdog"
password = "client-password"
server_auth = "azure_workload_identity"
When any user has server_auth = "azure_workload_identity", the following settings must be configured as well:
tls_verifymust not be"disabled".passthrough_authmust be"disabled".
HashiCorp Vault dynamic role authentication
PgDog can fetch dynamic database credentials (username and password) from HashiCorp Vault's database secrets engine, while keeping client-to-PgDog authentication unchanged. Credentials are cached and rotated automatically after a configured percentage of the Vault lease has elapsed.
Example
In users.toml:
[[users]]
name = "alice"
database = "pgdog"
password = "client-password"
server_auth = "vault_dynamic"
server_vault_path = "database/creds/pgdog"
##