Re: Re: Backup and Recovery

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: Re: Backup and Recovery
Дата
Msg-id 200107041504.f64F4DZ05568@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: Re: Backup and Recovery  (ncm@zembu.com (Nathan Myers))
Ответы Re: Re: Backup and Recovery  (Naomi Walker <nwalker@eldocomp.com>)
Список pgsql-hackers
> > All that is missing is a program, that can take a consistent physical
> > snapshot (as it was after a particular checkpoint) and would replay
> > the WAL after a restore of such a snapshot. This replay after a
> > consistent snapshot is probably as simple as making the WAL files
> > available to the standard startup rollforward (redo) mechanism, that
> > is already implemented.
> 
> How would you take a physical snapshot without interrupting database 
> operation?  Is a physical/binary snapshot a desirable backup format?  
> People seem to want to be able to restore from ASCII dumps.
> 
> Also, isn't the WAL format rather bulky to archive hours and hours of?
> I would expect high-level transaction redo records to be much more compact;
> mixed into the WAL, such records shouldn't make the WAL grow much faster.

The page images are not needed and can be thrown away once the page is
completely sync'ed to disk or a checkpoint happens.  

The row images aren't that large.  I think any solution would have to
handle page images and row images differently.


--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


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

Предыдущее
От: Michel Soto
Дата:
Сообщение: Strange query execution time
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Re: Backup and Recovery