Re: sync()

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: sync()
Дата
Msg-id 200301080618.h086IZU29394@candle.pha.pa.us
обсуждение исходный текст
Ответ на sync()  (Tatsuo Ishii <t-ishii@sra.co.jp>)
Ответы Re: sync()  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: sync()  (Tatsuo Ishii <t-ishii@sra.co.jp>)
Список pgsql-hackers
Tatsuo Ishii wrote:
> I noticed sync() is used in PostgreSQL.
> 
> CHECKPOINT -> FlushBufferPool() -> smgrsync() -> mdsync() -> sync()
> 
> Can someone tell me why we need sync() here?

As part of checkpoint, we discard some WAL files.  To do that, we must
first be sure that all the dirty buffers we have written to the kernel
are actually on the disk.  That is why the sync() is required.

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
359-1001+  If your life is a hard drive,     |  13 Roberts Road +  Christ can be your backup.        |  Newtown Square,
Pennsylvania19073
 


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

Предыдущее
От: Tatsuo Ishii
Дата:
Сообщение: sync()
Следующее
От: Tom Lane
Дата:
Сообщение: Re: sync()