Re: Backup and failover process

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема Re: Backup and failover process
Дата
Msg-id 487CC4BB.EE98.0025.0@wicourts.gov
обсуждение исходный текст
Ответ на Re: Backup and failover process  ("Campbell, Lance" <lance@illinois.edu>)
Список pgsql-admin
>>> "Campbell, Lance" <lance@illinois.edu> wrote:

> What happens if you take an SQL snapshot of a database while
> creating WAL archives then later restore from that SQL snapshot and
> apply those WAL files?

What do you mean by "an SQL snapshot of a database"?  WAL files only
come into play for backup techniques which involve file copies, not
dumps done using SQL commands (like pg_dump).

> Will there be a problem if the transactions
> within the newest WAL file after the SQL snapshot was taken cause
> problems when they are applied?

Point In Time Recovery (PITR) backup techniques allow you to restore
to a specified point in time, so you could restore up to the point
immediately before the problem transactions.

> I would assume yes but I wanted to
> check if there was some type of timestamp that would prevent an
issue
> from occurring?

Take another look at this section -- in particular,
recovery_target_time.

I hope this helps.

-Kevin

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

Предыдущее
От: "Kevin Grittner"
Дата:
Сообщение: Re: Backup and failover process
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: More Autovacuum questions