zalando/spilo is a developer-focused project on GitHub with 1.9k stars, written primarily in Python. Highly available elephant herd: HA PostgreSQL cluster using Docker
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
=========================================
Spilo: HA PostgreSQL Clusters with Docker
Spilo is a Docker image that provides PostgreSQL and Patroni <https://github.com/zalando/patroni>__ bundled together. Patroni is a template for PostgreSQL HA. Multiple Spilos can create a resilient High Available PostgreSQL cluster. For this, you'll need to start all participating Spilos with identical etcd <https://github.com/coreos/etcd>__ addresses and cluster names.
Spilo's name derives from სპილო [spiːlɒ], the Georgian word for "elephant."
Real-World Usage and Plans
Spilo is currently evolving: Its creators are working on a Postgres operator that would make it simpler to deploy scalable Postgres clusters in a Kubernetes environment, and also do maintenance tasks. Spilo would serve as an essential building block for this. There is already a Helm chart <https://github.com/kubernetes/charts/tree/master/incubator/patroni>__ that relies on Spilo and Patroni to provision a five-node PostgreSQL HA cluster in a Kubernetes+Google Compute Engine environment. (The Helm chart deploys Spilo Docker images, not just "bare" Patroni.)
How to Use This Docker Image
.. important::
We encourage users to build the Docker images themselves from source code using the latest tags to benefit from ongoing improvements and fixes. The team continues to maintain the project and address issues, but does not make regular releases nor publishes latest Docker images.
Spilo's setup assumes that you've correctly configured a load balancer (HAProxy, ELB, Google load balancer) that directs client connections to the master. There are two ways to achieve this: A) if the load balancer relies on the status code to distinguish between the healthy and failed nodes (like ELB), then one needs to configure it to poll the API URL; otherwise, B) you can use callback scripts to change the load balancer configuration dynamically.
Available container registry and image architectures
Spilo images are made available in the GitHub container registry (ghcr.io). Images are build and published as linux/amd64 and linux/arm64 on tag. For PostgreSQL version 14 currently availble images can be found here: https://github.com/zalando/spilo/pkgs/container/spilo-14
How to Build This Docker Image
$ cd postgres-appliance
$ docker build --tag $YOUR_TAG .
There are a few build arguments defined in the Dockerfile and it is possible to change them by specifying --build-arg arguments:
WITH_PERL=false # set to true if you want to install perl and plperl packages into image
PGVERSION="12"
PGOLDVERSIONS="9.5 9.6 10 11"
DEMO=false # set to true to build the smallest possible image which will work only on Kubernetes
TIMESCALEDB_APACHE_ONLY=true # set to false to build timescaledb community version (Timescale License)
TIMESCALEDB_TOOLKIT=true # set to false to skip installing toolkit with timescaledb community edition. Only relevant when TIMESCALEDB_APACHE_ONLY=false
ADDITIONAL_LOCALES= # additional UTF-8 locales to build into image (example: "de_DE pl_PL fr_FR")
Run the image locally after build:
$ docker run -it your-spilo-image:$YOUR_TAG
Have a look inside the container:
$ docker exec -it $CONTAINER_NAME bash
Connecting to PostgreSQL
Administrative Connections
PostgreSQL is configured by default to listen to port 5432. Spilo master initializes PostgreSQL and creates the superuser and replication user (postgres and standby by default).
You'll need to setup Spilo to create a database and roles for your application(s). For example:
Once you have created a database and roles for your application, you can connect to Spilo just like you want to connect to any other PostgreSQL cluster:
Spilo is configured via environment variables, the values of which are either supplied manually via the environment (whenever Spilo is launched as a set of Docker containers) or added in the configuration file or manifest (whenever Spilo is used in the Docker orchestration environment, such as Kubernetes or Docker Compose).
Please go here <https://github.com/zalando/spilo/blob/master/ENVIRONMENT.rst>__ to see our list of environment variables.
To supply env variables manually via the environment for local testing:
docker run -it -e YOUR_ENV_VAR=test your-spilo-image:latest
Issues and Contributing
Spilo welcomes questions via our issues tracker <https://github.com/zalando/spilo/issues>. We also greatly appreciate fixes, feature requests, and updates; before submitting a pull request, please visit our contributor guidelines <https://github.com/zalando/spilo/blob/master/CONTRIBUTING.rst>.
License
This project uses the Apache 2.0 license <https://github.com/zalando/spilo/blob/master/LICENSE>__.
The most recent commit recorded on zalando/spilo was 15 days ago, based on the GitHub push timestamp. The repository has 460 forks — one of the better signals of community interest.
How many stars does zalando/spilo have?
zalando/spilo has 1.9k GitHub stars — refresh the page for the live number, or check github.com/zalando/spilo. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
What else is in the Developer Tools space?
zalando/spilo is tracked by TopGit under the Developer Tools category, alongside 7 GitHub-tagged topics. Trending and Topics pages list peer repositories of comparable stars and language.
What language is zalando/spilo written in?
zalando/spilo is written primarily in Python. GitHub's language field is based on the largest share of bytes in the default branch.
What topics is zalando/spilo associated with?
GitHub's repository topics for zalando/spilo: "data-infrastructure", "docker", "docker-image", "high-availability", "patroni", "postgresql", "python". TopGit's editorial category is Developer Tools.
Where do I read more about zalando/spilo?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/zalando/spilo is the definitive source.
Why is zalando/spilo categorized under Developer Tools?
TopGit places zalando/spilo in the Developer Tools category based on its GitHub topics and description (tagged: "data-infrastructure", "docker", "docker-image"). Categories are assigned from real repository metadata, not editorial guesswork.
Read full README in the tab above.
Is spilo worth your time?
ChatGPT, Claude and Perplexity can all read this page. Ask one of them what it makes of spilo.