Re: problem with pg_standby

Поиск
Список
Период
Сортировка
От Gerd Koenig
Тема Re: problem with pg_standby
Дата
Msg-id 201008032327.28659.koenig@transporeon.com
обсуждение исходный текст
Ответ на problem with pg_standby  (Gerd Koenig <koenig@transporeon.com>)
Ответы Re: problem with pg_standby  (Greg Smith <greg@2ndquadrant.com>)
Список pgsql-general
Hi again,

I just want to drop you an additional note. After several attempts of
debugging pg_standby is restoring the WAL files as expected, but I cannot
explain why...

First startup of postgres was with init-script provided by the rpm
installation (/etc/init.d/postgresql start as user root). The pg processes
have been started thereby as user postgres.
An additional stop/start by init-script ended up in the same problem
situation, where pg_standby obviously wasn't able to get the file
000000010000001E0000001D.00000020.backup, even if it was there (and readable
by user postgres ;-) ).

Afterwards (3rd attempt) I started postgres not by init-script, but by pg_ctl
as user postgres, and......hej....heureka......pg_standby finds all needed files
and restores them.

Since even the init-script starts pg as user postgres I have no idea what
differs from init-script to direct call of pg_ctl as user postgres...?!?!

Somebody an explanation ?

kind regards....GERD....


On Tuesday, August 03, 2010 10:37:12 pm Gerd Koenig wrote:
> Hello,
>
> we currently setup a standby database with archive_command sending the WALs
> from master to standby.
> This works as expected, but the standby database doesn't restore the WALs
> from the given directory in recovery.conf and I have no idea why...
>
> recovery.conf:
> ----------------
> restore_command = '/usr/bin/pg_standby -d -s 20 -t /tmp/pgsql.trigger.5432
> /var/lib/pgsql/wal_exchange %f %p %r 2>>
> /var/lib/pgsql/data/pg_log/standby.log'
>
> The file standby.log contains:
> --------------------------------
> Trigger file            : /tmp/pgsql.trigger.5432
> Waiting for WAL file    : 00000001.history
> WAL file path           : /var/lib/pgsql/wal_exchange/00000001.history
> Restoring to...         : pg_xlog/RECOVERYHISTORY
> Sleep interval          : 20 seconds
> Max wait interval       : 0 forever
> Command for restore     : cp "/var/lib/pgsql/wal_exchange/00000001.history"
> "pg_xlog/RECOVERYHISTORY"
> Keep archive history    : 000000000000000000000000 and later
> running restore         :cp: cannot stat
> `/var/lib/pgsql/wal_exchange/00000001.history': No such file or directory
> cp: cannot stat `/var/lib/pgsql/wal_exchange/00000001.history': No such
> file or directory
> cp: cannot stat `/var/lib/pgsql/wal_exchange/00000001.history': No such
> file or directory
> cp: cannot stat `/var/lib/pgsql/wal_exchange/00000001.history': No such
> file or directory
> not restored            : history file not found
>
> Trigger file            : /tmp/pgsql.trigger.5432
> Waiting for WAL file    : 000000010000001E0000001D.00000020.backup
> WAL file path           :
> /var/lib/pgsql/wal_exchange/000000010000001E0000001D.00000020.backup
> Restoring to...         : pg_xlog/RECOVERYHISTORY
> Sleep interval          : 20 seconds
> Max wait interval       : 0 forever
> Command for restore     : cp
> "/var/lib/pgsql/wal_exchange/000000010000001E0000001D.00000020.backup"
> "pg_xlog/RECOVERYHISTORY"
> Keep archive history    : 000000000000000000000000 and later
> WAL file not present yet. Checking for trigger file...
> WAL file not present yet. Checking for trigger file...
> WAL file not present yet. Checking for trigger file...
> WAL file not present yet. Checking for trigger file...
> WAL file not present yet. Checking for trigger file...
> -------------------------------
>
> And in the directory "/var/lib/pgsql/wal_exchange" I have dozens of WALs in
> the meantime, but they didn't get restored, and in the logs I receive "WAL
> file not present...."
> The file "pg_xlog/RECOVERYHISTORY" doesn't exist, btw..., and the file
> xx00000020.backup contains:
> ""
> START WAL LOCATION: 1E/1D000020 (file 000000010000001E0000001D)
> STOP WAL LOCATION: 1E/1F000000 (file 000000010000001E0000001E)
> CHECKPOINT LOCATION: 1E/1D000020
> START TIME: 2010-08-03 21:11:23 CEST
> LABEL: initial_backup
> STOP TIME: 2010-08-03 21:44:06 CEST
> ""
>
> I can stop and restart the standby db as often as I want ending up in a
> working sync-mechanism, as long as the WALs being copied from master to
> standby, right ?
>
> Any help appreciated, many thanks .....GERD.....

В списке pgsql-general по дате отправления:

Предыдущее
От: "Joshua D. Drake"
Дата:
Сообщение: Re: problem with pg_standby
Следующее
От: Greg Smith
Дата:
Сообщение: Re: problem with pg_standby