Re: psql 8 warm standby strong start, weak finish

Поиск
Список
Период
Сортировка
От Adrian Klaver
Тема Re: psql 8 warm standby strong start, weak finish
Дата
Msg-id 5542CAAB.204@aklaver.com
обсуждение исходный текст
Ответ на Re: psql 8 warm standby strong start, weak finish  (Charlton Galvarino <charlton@2creek.com>)
Ответы Re: psql 8 warm standby strong start, weak finish
Список pgsql-general
On 04/30/2015 05:22 PM, Charlton Galvarino wrote:
> MASTER
>    * archive_command = 'cp -v %p /var/lib/pgsql/archives/%f'
>    * rsync files in [MASTER:/var/lib/pgsql/archives that are +10m and delete on them once sent] to
[STANDBY:/var/lib/pgsql/archives]
>
> STANDBY
>    * restore_command = 'pg_standby -d -s 2 -t /tmp/pgsql.trigger /var/lib/pgsql/archives %f %p %r 2>>standby.log'
>    * no cleanup to do since pg_standby cleans up old WAL's
>
> MASTER and STANDBY are completely separate servers that do not have any common disk space.
> ________________________________________

 From here:

https://wiki.postgresql.org/wiki/Warm_Standby

"Set archive_command in the master's postgresql.conf. rysnc is a popular
choice or you can just use one of the examples from the docs. I use:

rsync -a %p postgres@standbyhost:/path/to/wal_archive/%f
"

Simplifies the process.

--
Adrian Klaver
adrian.klaver@aklaver.com


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

Предыдущее
От: Charlton Galvarino
Дата:
Сообщение: Re: psql 8 warm standby strong start, weak finish
Следующее
От: Fabio Ugo Venchiarutti
Дата:
Сообщение: Re: PostgreSQL HA config recommendations