Installation
Kubernetes
PgDog comes with its own Helm chart. You can install it from git:
git clone https://github.com/pgdogdev/helm pgdog-helm && \
cd pgdog-helm &&
helm install -f values.yaml pgdog ./
Docker
Docker images are built automatically for each commit in GitHub. You can fetch them directly from the repository:
From source
PgDog is easily compiled from source. For production deployments, a Dockerfile
is provided in the repository. If you prefer to deploy on bare metal or you're looking to run PgDog locally, you'll need to install a few dependencies.
Dependencies
Parts of PgDog depend on C/C++ libraries, which are compiled from source. Make sure to have a working version of a C/C++ compiler installed.
Mac OS
Install XCode from the App Store and CMake from brew:
Ubuntu
Install Clang and CMake:
Arch Linux
Install Clang and CMake:
Windows
Install Visual Studio Community Edition. Make sure to include CMake in the installation.
Rust compiler
Since PgDog is written in Rust, make sure to install the latest version of the compiler.
Build from source
PgDog source code can be downloaded from GitHub:
Compile PgDog
PgDog should be compiled in release mode to make sure you get all performance benefits. You can do this with Cargo:
Configuration
PgDog is configured via two files:
pgdog.toml
which contains general pooler settings and PostgreSQL server informationusers.toml
which contains passwords for users allowed to connect to the pooler
The passwords are stored in a separate file to simplify deployments in environments where secrets can be safely encrypted, like Kubernetes or AWS EC2.
Both files can to be placed in the current working directory ($PWD
) for PgDog to detect them. Alternatively,
you can specify their location when starting PgDog, using the --config
and --users
arguments:
Example pgdog.toml
Most PgDog configuration options have sensible defaults. This allows a basic, single database configuration, to be pretty short:
Example users.toml
This configuration file contains a mapping between databases, users and passwords. Users not specified in this file won't be able to connect to PgDog:
Launch PgDog
Starting PgDog can be done by running the binary in target/release
folder or with Cargo:
Next steps
Features
Read more about PgDog features like load balancing, supported authentication mechanisms, TLS, health checks, and more.
Administration
Learn how to operate PgDog in production, like fetching real time statistics from the admin database or updating configuration.
Architecture
Read about PgDog internals and how it works under the hood.
Configuration
Reference for PgDog configuration like maximum server connections, number of shards, and more.