Re: What's the best practice to compare the transaction with the checkpoint?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: What's the best practice to compare the transaction with the checkpoint?
Дата
Msg-id 1380011.1594053288@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: What's the best practice to compare the transaction with the checkpoint?  (Jialun Zhang <reatank@gmail.com>)
Ответы Re: What's the best practice to compare the transaction with the checkpoint?
Список pgsql-novice
Jialun Zhang <reatank@gmail.com> writes:
> My question is that,  consider such a situation (in the order of time):
> 1. toast create a file for a value V;
> 2. latest checkpoint;
> 3. use V (here the file is read);
> 4. delete the file when VACUUM deletes V;
> 5. crash, then when we recover from the latest checkpoint, the file will be
> accessed again but it has gone.

What is "use V", and why would it be part of what is replayed in step 5?
Replay generally doesn't do anything that could access potentially-deleted
data, because depending on whether or not the updated page from step 4 got
written out before crashing, there may or may not be any such tuple.

The replay of step 4 would need to perform something like "delete the file
for V if it exists, but don't complain if it does not", since we couldn't
be sure which state we'll find on-disk.

            regards, tom lane



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

Предыдущее
От: Jialun Zhang
Дата:
Сообщение: Re: What's the best practice to compare the transaction with the checkpoint?
Следующее
От: Jialun Zhang
Дата:
Сообщение: Re: What's the best practice to compare the transaction with the checkpoint?