Re: pg_receivexlog or archive_command

Поиск
Список
Период
Сортировка
От Stephen Frost
Тема Re: pg_receivexlog or archive_command
Дата
Msg-id 20191002061651.GD6962@tamriel.snowman.net
обсуждение исходный текст
Ответ на pg_receivexlog or archive_command  (Vikas Sharma <shavikas@gmail.com>)
Список pgsql-general
Greetings,

* Vikas Sharma (shavikas@gmail.com) wrote:
> I am wondering which one is the best way to archive the xlogs for Backup
> and Recovery - pg_receivexlog or archive_command.
>
> pg_receivexlog seems best suited because the copied/archived file is
> streamed as it is being written to in xlog while archive_command only
> copies when the WAL is fully written to.

This really ends up depending on what your WAL volume is.  As mentioned,
you really don't want to write your own utility for archive_command,
since you really want to make sure that the WAL has actually been
archived and sync'd- so definitely use an existing tool which does that
for you.  The downside of pg_receivewal when it comes to high WAL volume
is that a single-threaded process just simply can't keep up, while
something being called from archive_command can be parallelized.
Perhaps, down the road, there'll be a tool that could parallelize
streaming of WAL also, though it would be pretty tricky to get right,
and if you're doing that much WAL, is it really an issue that it's
already chunked up nicely for archive_command..?

Note that there is also archive_timeout which you can set, to make sure
that you don't go too long with writes on the primary that haven't been
sent to the archive and stored.  If your transations are particularly
valuable, then having a synchronous standby setup (likely with two
replicas in a quorum-based sync setup) is probably the direction to
go in, so you can have a highly available environment.  Anything that's
async will mean you have a good chance of having some data loss if
things go wrong (even with pg_receivewal..).

Thanks,

Stephen

Вложения

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

Предыдущее
От: Matt Andrews
Дата:
Сообщение: Users, Roles and Connection Pooling
Следующее
От: Stephen Frost
Дата:
Сообщение: Re: pg_receivexlog or archive_command