AW: docu bug?

Поиск
Список
Период
Сортировка
От Zwettler Markus (OIZ)
Тема AW: docu bug?
Дата
Msg-id 77105e802f334fcdba8e774e98a9482c@SZHM22343.global.szh.loc
обсуждение исходный текст
Ответ на Re: docu bug?  (Michael Paquier <michael@paquier.xyz>)
Ответы Re: docu bug?  (Michael Paquier <michael@paquier.xyz>)
Список pgsql-docs
Yes. I think the exclusive backup method should be mentioned especially as it is the older one.

- Markus



-----Ursprüngliche Nachricht-----
Von: Michael Paquier [mailto:michael@paquier.xyz]
Gesendet: Dienstag, 20. Februar 2018 02:25
An: Zwettler Markus (OIZ) <Markus.Zwettler@zuerich.ch>; pgsql-docs@lists.postgresql.org
Betreff: Re: docu bug?

On Mon, Feb 19, 2018 at 01:54:24PM +0000, PG Doc comments form wrote:
> The sample works with a NON-persistent connection (psql -c):
>
> <quote>
> 25.3.6.1. Standalone Hot Backups
> ...      touch /var/lib/pgsql/backup_in_progress
> psql -c "select pg_start_backup('hot_backup');"
> tar -cf /var/lib/pgsql/backup.tar /var/lib/pgsql/data/ psql -c "select
> pg_stop_backup();"
> rm /var/lib/pgsql/backup_in_progress
> tar -rf /var/lib/pgsql/backup.tar /var/lib/pgsql/archive/ ...
> </quote>

This uses the set of exclusive backup APIs, so with non-persistent connections the backup can be correctly completed.
Non-exclusivebackups can be defined using 'false' as third argument of 
pg_start_backup() and first argument of pg_stop_backup().  Note that for pg_start_backup you would also need to define
thesecond boolean argument to decide if a checkpoint should be immediately taken or not. 
So you would have basically the following flow on a persistem
connection:
=# SELECT pg_start_backup('my_backup', true_or_false, false);
-- keep connection alive and do stuff.
=# SELECT pg_stop_backup(false);

Do you think that the section "Tips and Examples" should mention that an exclusive backup method is used for this
example? This may reduce the confusion. 
--
Michael


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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: Re: docu bug?
Следующее
От: Michael Paquier
Дата:
Сообщение: Re: docu bug?