Are pg_xlog/* fiels necessary for PITR?

Поиск
Список
Период
Сортировка
От rihad
Тема Are pg_xlog/* fiels necessary for PITR?
Дата
Msg-id 4EA96A52.7080909@mail.ru
обсуждение исходный текст
Ответы Re: Are pg_xlog/* fiels necessary for PITR?
Список pgsql-general
Hi, I'm backing up the entire server directory from time to time.
pg_xlog/ directory containing WAL files is pretty heavy
(wal_level=archive). Can I exclude it from the regular tar archive?


#!/bin/sh

renice 20 $$ 2>/dev/null
pgsql -U pgsql -q -c "CHECKPOINT" postgres # speed up pg_start_backup()
pgsql -U pgsql -q -c "select pg_start_backup('sol')" postgres
tar -cjf - /db 2>/dev/null | ssh -q -i ~pgsql/.ssh/id_rsa -p 2022 -c
blowfish dbarchive@10.0.0.1 'cat > db.tbz'
pgsql -U pgsql -q -c "select pg_stop_backup()" postgres
sleep 60 #wait for new WAL backups to appear
echo 'ssh -q dbarchive@10.0.0.1 ./post-backup.sh' | su -m pgsql


I want to change tar invocation to be: tar -cjf --exclude 'db/pg_xlog/*' ...

Will there be enough data in case of recovery? (May God forbid... )))

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

Предыдущее
От: "Ing.Edmundo.Robles.Lopez"
Дата:
Сообщение: Getting X coordinate from a point(lseg), btw i read the man page about points.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: WAL file size vs. data file size