"Andy Shellam" <andy.shellam@xxxxxxxxxxxxxxxxx> writes: > Basically I've taken a dump of my live database directory (between > pg_start_backup and pg_stop_backup) calls - shipped this to my standby, set > up a recovery.conf file (which calls the rolling-WAL script). This script > is designed to wait until the log file arrives, or a flag file is set to > return code 1 to postgres. > However as soon as the recovery starts, the script is waiting for a file > called 00000001.history, which will never arrive because it was never > generated on the live box since the base backup was taken. This is not a workable approach: your recovery script *will* be asked for files that do not exist, and waiting for them to be supplied is not always the right answer. Supplying an empty file instead is definitely the wrong answer. You might be able to make it work by conditionalizing the behavior on the format of the name being asked for. regards, tom lane