Re: fsync vs fdatasync

Поиск
Список
Период
Сортировка
От Matthew Kirkwood
Тема Re: fsync vs fdatasync
Дата
Msg-id Pine.LNX.4.30.0106101950060.30695-100000@sphinx.mythic-beasts.com
обсуждение исходный текст
Ответ на fsync vs fdatasync  (mlw <markw@mohawksoft.com>)
Список pgsql-hackers
On Sun, 10 Jun 2001, mlw wrote:

> Is there any reason to EVER call pg_fsync?
>
> What would happen if we always called pg_fdatasync?

In theory, nothing.  I believe SUS guarantees that fdatasync
will flush all data and metadata to disk, _except_ perhaps
inode access/change/modify times.  This means file size,
permissions, ownership and indirect blocks (or whatever is
relevant to your filesystem).

Thus, unless you need the timestamps to be accurate, it is
always safe.

Unfortunately, there are (said to be -- I couldn't name one)
implementations which predate this (fairly sane) semantic,
and flush only file contents.

I think that use of fsync is wise on occasion.  If we know
that (for example) we've extended the file, then fdatasync
will behave as fsync on SUS-conformant platforms, and will
risk data loss on non-conformant platforms.

Matthew.



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

Предыдущее
От: mlw
Дата:
Сообщение: fsync vs fdatasync
Следующее
От: Tom Lane
Дата:
Сообщение: Re: fsync vs fdatasync