Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-06 | walmgr: ignore .history files when removing PG_RECEIVEXLOG file | Tarvi Pillessaar | |
PG_RECEIVEXLOG got removed too early due to .history files that were not present | |||
2013-07-09 | walmgr: new command createslave and new option --synch-standby | Tarvi Pillessaar | |
2013-03-05 | Merge branch 'master' of https://github.com/markokr/skytools | Tarvi Pillessaar | |
2013-03-05 | walmgr: small loglevel changes | Tarvi Pillessaar | |
2013-02-23 | walmgr: sweeping change to postpone log string formatting | martinko | |
2012-11-02 | Merge remote-tracking branch 'intgit/master' | Marko Kreen | |
2012-10-24 | remove a stray tab. | Martin Pihlak | |
2012-10-24 | Move set_last_complete AFTER rsync. | Martin Pihlak | |
Previously .walshipping.last was updated before the rsync succeeded, it turns out that this was too optimistic -- occasionally the rsync fails and the .last file contains wrong information. This results in skipped files during "master sync". | |||
2012-10-18 | walmgr: drop reference to traceback object | Marko Kreen | |
2012-08-16 | Merge branch 'master' of internal-git:/git/dba/skytools-3 | Martin Pihlak | |
2012-08-16 | Don't complain if a nonexistent WAL file is encountered during cleanup. | Martin Pihlak | |
This is to avoid crashes when some cleanup command (such as pg_archivecleanup) has already removed the wal files. | |||
2012-05-11 | Merge branch 'master' of internal-git:/git/dba/skytools-3 | Tarvi Pillessaar | |
2012-05-10 | walmgr: fix backup from slave | Sergey Burladyan | |
Current version improperly remove needed WAL files when creating backup from slave. The minimum WAL file is file with REDO record, not with latest checkpoint itself. | |||
2012-05-05 | walmgr: add option for init-slave to add password from file to .pgpass | Tarvi Pillessaar | |
walmgr: add command synch-standby | |||
2011-11-25 | python/walmngr.py: update help and usage | Cédric Villemain | |
Add the xpartialsync command description and remove the -n switch from usage (it is already present in --help) | |||
2011-11-10 | Master xarchive now runs "sync" on slave. | Martin Pihlak | |
This is an attempt at minimizing the chance of WAL file corruption on slave server crash -- master xarchive command does not return success until the the buffers on slave have been flushed to disk. | |||
2011-10-14 | reset synchronous_standby_names on walmgr "stop". | Martin Pihlak | |
2011-10-14 | add "pg_archivecleanup" to recovery.conf. | Martin Pihlak | |
2011-10-14 | add "primary_conninfo" option to --init-slave | Martin Pihlak | |
2011-10-14 | added init.d script guessing. | Martin Pihlak | |
2011-10-13 | Fix invalid reference to os.path.mkdir | Martin Pihlak | |
2011-09-21 | Fix a bug introduced by a bugfix b08445. | Martin Pihlak | |
2011-04-27 | fixed failed sync exit code | Tarvi Pillessaar | |
2011-04-04 | Added "compression" to master config template. | Martin Pihlak | |
2011-04-01 | ignore missing authorized_keys file on wal slave cleanup. | Martin Pihlak | |
2011-03-24 | fix pid writing in slave xlock. | Martin Pihlak | |
Slave xlock should not attempt to write pid to BACKUPLOCK if none was specified on command line. | |||
2011-03-18 | fix --ssh-add-key with missing authorized_keys file | Martin Pihlak | |
2011-03-17 | Couple of bugfixes for stale backup lock handling. | Martin Pihlak | |
2011-03-17 | Move the pg_stop_backup() into a finally: block. | Steve Singer | |
Some instances were reported where the base backup failed with some issue but pg_stop_backup() hadn't been called and had to be called manually. This should make that less likely | |||
2011-03-17 | Add support for detecting stale locks and releasing them instead of aborting | Steve Singer | |
2011-03-16 | walmgr.py: add "cleanup" command | Martin Pihlak | |
2011-02-09 | SSH batch mode and no strict host checking for remote_walmgr | Martin Pihlak | |
2011-02-09 | Create log,pid,conf directories during --init | Martin Pihlak | |
2011-01-22 | Tweaking --init to work on custom postgres setup | Martin Pihlak | |
2011-01-21 | Added --init-X commands to simplify walmgr setup. | Martin Pihlak | |
- Both wal-master and slave now use [walmgr] configuration section. - Added --init-master and --init-slave command to set up configuration files. - Various path are guessed from PGDATA, optionally override with --set X=Y - "slave" config key in wal-master.ini now only contains hostname - "slave" config key in wal-slave.ini has been replaced with walmgr_data - ssh-keygen option to init-master, ssh-add-key option to init-slave - most of the cf.get() calls for directories have been replaced with cf.getfile() | |||
2011-01-18 | Ignore pgsql_tmp directory while creating base backup. | Martin Pihlak | |
bug reported by Guillaume Smet | |||
2011-01-13 | Fix "walmgr stop" not to disable archive_mode. | Martin Pihlak | |
That is, unless master_restart_cmd is defined. | |||
2010-12-09 | Allow "primary_conninfo" to be specified in wal-slave.ini | Martin Pihlak | |
Based on a patch by Mark Kirkwood. | |||
2010-12-09 | Some adjustments for 9.0, wal_level GUC is also modified during setup/stop. | Martin Pihlak | |
2010-07-27 | Introduce a 'slave_pg_xlog' configuration variable. This | Martin Pihlak | |
allows master and slave pg_xlog files to be in different locations. During restore this directory is symlinked to slave pg_xlog. Patch from Steve Singer. | |||
2010-07-27 | Introduce a 'backup_datadir' configuration variable to | Martin Pihlak | |
control whether the slave data directory is kept or overwritten during restore. Patch from Steve Singer. | |||
2010-07-27 | walmgr.py: add --version option | Martin Pihlak | |
2010-07-27 | Simplify the cleanup logic for partial wals. | Martin Pihlak | |
2010-07-27 | "walmgr.py sync" now omits unneeded WAL segments if the | Martin Pihlak | |
database has been cleanly shut down. This greatly reduces sync time during planned swithcovers as usually there is only a single WAL file to be synched to slave. | |||
2010-02-05 | Fix slave_cleanup() so that partial files are not prematurely removed. | Martin Pihlak | |
2009-12-29 | Redundant pg_auth file synch removed. By Mark Kirkwood. | Martin Pihlak | |
2009-11-04 | walmgr: remove double import | Marko Kreen | |
2009-10-06 | Fix the pg_[x]log rsyncing code to leave out directory contents. | Martin Pihlak | |
2009-09-15 | Disable archive_command in restored postgresql.conf | Martin Pihlak | |
archive_command is set to /bin/true instead of disabling archive_mode This avoids the extra reconfiguration restart when the slave is actually booted and promoted to master. Based on patch by Mark Kirkwoord. | |||
2009-07-21 | Remove unused --overwrite option. | Martin Pihlak | |