AW: AW: Re: Backup and Recovery

Поиск
Список
Период
Сортировка
От Zeugswetter Andreas SB
Тема AW: AW: Re: Backup and Recovery
Дата
Msg-id 11C1E6749A55D411A9670001FA68796336836A@sdexcsrv1.f000.d0188.sd.spardat.at
обсуждение исходный текст
Ответы Re: AW: AW: Re: Backup and Recovery  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
> >> Ideally the archiving
> >> process would also discard records from aborted transactions, but I'm
> >> not sure how hard that'd be to do.
> 
> > Unless we have UNDO we also need to roll forward the physical changes of 
> > aborted transactions, or later redo records will "sit on a 
> wrong physical image".
> 
> Wouldn't it be the same as the case where we *do* have UNDO?  How is a
> removed tuple different from a tuple that was never there?

HiHi, the problem is a subtile one. What if a previously aborted txn 
produced a btree page split, that would otherwise not have happened ?
Another issue is "physical log" if first modification after checkpoint
was from an aborted txn. Now because you need to write that physical log
page you will also need to write the abort to pg_log ...

I guess you can however discard heap tuple *column values* from aborted 
txns, but I am not sure that is worth it.

Andreas


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

Предыдущее
От: Doug McNaught
Дата:
Сообщение: Re: Proper use of select() parameter nfds?
Следующее
От: Zeugswetter Andreas SB
Дата:
Сообщение: AW: AW: Re: Backup and Recovery