Re: Choosing a filesystem

Поиск
Список
Период
Сортировка
От Simon Riggs
Тема Re: Choosing a filesystem
Дата
Msg-id 1222196475.4445.444.camel@ebony.2ndQuadrant
обсуждение исходный текст
Ответ на Re: Choosing a filesystem  (Bruce Momjian <bruce@momjian.us>)
Список pgsql-performance
On Tue, 2008-09-23 at 13:02 -0400, Bruce Momjian wrote:
> Merlin Moncure wrote:
> > > although for postgres the thing that you are doing the fsync on is the WAL
> > > log file. that is a single (usually) contiguous file. As such it is very
> > > efficiant to write large chunks of it. so while you will degrade from the
> > > battery-only mode, the fact that the controller can flush many requests
> > > worth of writes out to the WAL log at once while you fill the cache with
> > > them one at a time is still a significant win.
> >
> > The heap files have to be synced as well during checkpoints, etc.
>
> True, but as of 8.3 those checkpoint fsyncs are spread over the interval
> between checkpoints.

No, the fsyncs still all happen in a tight window after we have issued
the writes. There's no waits in between them at all. The delays we
introduced are all in the write phase. Whether that is important or not
depends upon OS parameter settings.

--
 Simon Riggs           www.2ndQuadrant.com
 PostgreSQL Training, Services and Support


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: Choosing a filesystem
Следующее
От: Colin Copeland
Дата:
Сообщение: query planner and scanning methods