pg_auto_failover icon indicating copy to clipboard operation
pg_auto_failover copied to clipboard

Postgres extension and service for automated failover and high-availability

Results 116 pg_auto_failover issues
Sort by recently updated
recently updated
newest added

Hi, hackers, I'm a database(postgresql variant) developer and we're considering to port pg_auto_failover for our database. The `group_id` is defined to be a keyword for a long time, which conflicts...

enhancement
good first issue

Addresses #382 . Followed the steps outlined in https://github.com/citusdata/pg_auto_failover/issues/382#issuecomment-683686687

Hi, In a container/kubernetes environment, it's a good practice to log only to stdout / stderr. The logs are then easily collected and aggregated. it looks like pg_autoctl is redirecting...

## Description Following the steps in the documentation [here](https://github.com/citusdata/pg_auto_failover/blob/7ac18c5d0a07fb23738032bd74e5b8896a48cd81/docs/security.rst#authentication-with-passwords) to setup password based authentication is not enough without an added: `psql -p ${PRIMARY_PORT} postgres -c "alter user pgautofailover_replicator password 'h4ckm3m0r3';`...

This way we should find timing issues in our code sooner. An example of this was #245.

It would be useful if `pg_autoctl` had a command to upgrade the primary and standby to a new version of Postgres via `pg_upgrade` without triggering a failover.

enhancement

Hi, I tried install pg_auto_failover on Oracle Linux 8, but it says Oracle Linux is not supported. As Oracle Linux is a rpm based distribution, very similar to CentOS/Red Hat,...

Although we are using `snprintf` to make sure we don't overflow a buffer, we don't actually check if the whole string was written in most cases. If this would occur,...

I have seen following error regarding use of _Static_assert that we recently introduced. ``` make -C pg_autoctl pg_autoctl make[2]: Entering directory `/root/pg_auto_failover/src/bin/pg_autoctl' gcc -std=c99 -D_GNU_SOURCE -g -I /usr/pgsql-10/include -I /usr/pgsql-10/include/server...

I adjusted the pg_autoctl.cfg (monitor) [postgresql] ... listen_addresses = localhost,postgres-ha When I reboot postgres listens to localhost (despite the Log-Entry shows "--options -h localhost,postgres-ha" When I restart postgres by systemctl...