PGSQL Playbook

Pull up a defined cluster of HA PostgreSQL cluster using the PGSQL playbook

Overview

PlaybookFunctionLink
pgsqlDeploy a PostgreSQL cluster, or cluster expandsrc
pgsql-removeDestroy PostgreSQL cluster, or cluster downsizesrc
pgsql-createuserCreate PostgreSQL business userssrc
pgsql-createdbCreate a PostgreSQL Business Databasesrc
pgsql-monlyMonly mode, with access to existing PostgreSQL instances or RDSsrc
pgsql-migrationGenerate PostgreSQL semi-automatic database migration solution (Beta)src
pgsql-matrixReuse the PG to deploy a set of MatrixDB clusters (Beta)src

pgsql

After completing the infra initialization, users can use pgsql.yml to complete the initialization of the database cluster.

Complete the cluster definition in the Pigsty configuration file and then apply the changes to the environment by executing pgsql.yml.

  1. ./pgsql.yml # Perform cluster initialization on all machines in the list (Danger!)
  2. ./pgsql.yml -l pg-test # Perform cluster initialization on the machines under the pg-test group (recommended!)
  3. ./pgsql.yml -l pg-meta,pg-test # Initialize both pg-meta and pg-test clusters
  4. ./pgsql.yml -l 10.10.10.11 # Initialize the instance on the machine 10.10.10.11

This playbook accomplishes the following.

  • Install, deploy, and initialize PostgreSQL, Pgbouncer, Patroni (postgres).
  • Install the PostgreSQL monitor (monitor).
  • Install and deploy Haproxy and VIP, expose services (service).
  • Register the database instance to the infra to be monitored (register).

This playbook can be misused to accidentally delete the database, as initializing the database will erase the existing database.

The insurance param prevents accidental deletion by allowing automatic aborting or skipping of high-risk operations during initialization when an existing running instance is detected.

Nevertheless, when using pgsql.yml, double-check that -tags|-t and -limit|-l is correct.

Playbook - 图1

Cautions

  • It is strongly recommended to add the -l parameter to the execution to limit the scope of the command execution.
  • When performing initialization for a replica, the user must ensure that the primary has completed initialization.
  • If Patroni takes too long to pull up a replica when a cluster is expanded, the Ansible playbook may abort due to a timeout. (However, making the replica will continue, for example, in scenarios where making the replica takes more than one day).
  • It is possible to perform subsequent steps from the -Wait for patroni replica online task via Ansible’s -start-at-task after the replica has been automatically crafted. Please refer to SOP for details.

SafeGuard

Pigsty provides a SafeGuard to avoid purging running PostgreSQL instances with fat fingers. There are two parameters.

  • pg_safeguard: Disabled by default, if enabled, running PostgreSQL will not be purged by any circumstance.
  • pg_clean: disabled by default, pgsql.yml will purge running PostgreSQL during node init.

When running pg exists, pgsql.yml will act as:

pg_safeguard / pg_cleanpg_clean=truepg_clean=false
pg_safeguard=trueABORTABORT
pg_safeguard=falsePURGEABORT

When running pg exists, pgsql-remove.yml will act as:

pg_safeguard / pg_cleanpg_clean=truepg_clean=false
pg_safeguard=trueABORTABORT
pg_safeguard=falsePURGEPURGE

Selective execution

An ansible’s tagging mechanism can select a subset of the execution playbook.

For example, if you want to perform only service initialization, you can use the following command.

  1. ./pgsql.yml --tags=service # Refreshing the service definition of a cluster

The common subsets of commands are as follows.

  1. # Infra initialization
  2. ./pgsql.yml --tags=infra # Complete infra initialization, including machine node initialization and DCS deployment
  3. # Database initialization
  4. ./pgsql.yml --tags=pgsql # Complete database deployment: database, monitoring, services
  5. ./pgsql.yml --tags=postgres # Complete database deployment
  6. ./pgsql.yml --tags=monitor # Complete monitoring deployment
  7. ./pgsql.yml --tags=service # Complete load balancing deployment(Haproxy & VIP)
  8. ./pgsql.yml --tags=register # Registering services to the infra

Daily management tasks

Daily management can also be used ./pgsql.yml to modify the state of the cluster. The common command subsets are as follows.

  1. ./pgsql.yml --tags=node_admin # Create an admin user on the target node
  2. # If the current administrator does not have ssh to the target node, you can use another user with ssh to create an administrator (enter the password)
  3. ./pgsql.yml --tags=node_admin -e ansible_user=other_admin -k
  4. ./pgsql.yml --tags=pg_scripts # Update the /pg/bin/ directory script
  5. ./pgsql.yml --tags=pg_hba # Regenerate and apply cluster HBA rules
  6. ./pgsql.yml --tags=pgbouncer # Reset Pgbouncer
  7. ./pgsql.yml --tags=pg_user # Full volume refresh business users
  8. ./pgsql.yml --tags=pg_db # Full volume refresh of business database
  9. ./pgsql.yml --tags=register_consul # Register the Consul service locally with the target instance (local execution)
  10. ./pgsql.yml --tags=register_prometheus # Register monitoring objects in Prometheus (proxy to all Meta nodes for execution)
  11. ./pgsql.yml --tags=register_grafana # Register monitoring objects in Grafana (only once)
  12. ./pgsql.yml --tags=register_nginx # Register a LB with Nginx (proxy to all Meta nodes for execution)
  13. # Redeploy monitoring using binary installation
  14. ./pgsql.yml --tags=monitor -e exporter_install=binary
  15. # Refresh the service definition of the cluster (changes in cluster membership or service definition)
  16. ./pgsql.yml --tags=haproxy_config,haproxy_reload

pgsql-remove

Database Destruction: Remove existing database cluster or instance, reclaim node: pgsql-remove.yml.

The pgsql-remove.yml is the reverse of pgsql.yml and will do the following :

  • Unregister the database instance from the infra(register
  • Stop the LB, service component(service
  • Removal of monitoring system components(monitor
  • Remove Pgbouncer, Patroni, Postgres(postgres
  • Remove database dir(rm_pgdata: true
  • Remove Package(rm_pkgs: true

The playbook has two command-line options to remove the database dir and packages (the default destruction does not remove data and packages).

  1. rm_pgdata: false # remove postgres data? false by default
  2. rm_pgpkgs: false # uninstall pg_packages? false by default

Playbook - 图2

Daily management

  1. ./pgsql-remove.yml -l pg-test # Destruction pg-test cluster
  2. ./pgsql-remove.yml -l 10.10.10.13 # Destruction instance 10.10.10.13 (pg-test.pg-test-3)
  3. ./pgsql-remove.yml -l 10.10.10.13 -e rm_pgdata=true # Destruction and remove the data dir (slow)
  4. ./pgsql-remove.yml -l 10.10.10.13 -e rm_pkgs=true # Destruction and remove the installed PG-related packages

pgsql-createdb

Created business database: Create a new database in an existing cluster or modify a current database: pgsql-createdb.yml.

Playbook - 图3

To ensure that, the author recommends creating a new database in an existing cluster via a playbook or scripting tool.

  • The inventory is consistent with the actual situation.
  • Pgbouncer connection pools are consistent with the database.
  • The data sources registered in Grafana are consistent with the actual situation.

Daily management

Please refer to the section Database for the creation of the database.

  1. # Create a database named test in the pg-test cluster
  2. ./pgsql-createdb.yml -l pg-test -e pg_database=test

Simplify commands using wrapper scripts:

  1. bin/createdb <pg_cluster> <dbname>

pgsql-createuser

Create business users: Create a new user or modify an existing user in an existing cluster:pgsql-createuser.yml.

Playbook - 图4

Daily management

Please refer to the section User for the creation of business users.

  1. # Create a user named test in the pg-test cluster
  2. ./pgsql-createuser.yml -l pg-test -e pg_user=test

Simplify commands using wrapper scripts.

  1. bin/createuser <pg_cluster> <username>

Note that the user-specified by pg_user must already be in the definition of the cluster pg_users. Otherwise, an error will be reported.


pgsql-monly

Dedicated playbook for performing monitoring deployments. See monly deployments for details.

Playbook - 图5


pgsql-matrix

Dedicated playbook for deploying MatrixDB. See Deploying MatrixDB Cluster for details.

Playbook - 图6


pgsql-migration

Playbook for automated database migration, still in Beta status. See database cluster migration for details.

Playbook - 图7

Last modified 2022-06-04: fii en docs batch 2 (61bf601)