Re: performance on new linux box

Поиск
Список
Период
Сортировка
Искать
От
Kevin Grittner
Тема
Re: performance on new linux box
Дата
Msg-id
4C35E7CC020000250003328A@gw.wicourts.gov
Ответ на
Список
Дерево обсуждения
performance on new linux box Ryan Wexler <ryan@iridiumsuite.com>
Re: performance on new linux box Tom Lane <tgl@sss.pgh.pa.us>
Re: performance on new linux box Andy Colson <andy@squeakycode.net>
Re: performance on new linux box Eliot Gable <egable+pgsql-performance@gmail.com>
Re: performance on new linux box "Kevin Grittner" <Kevin.Grittner@wicourts.gov>
Re: performance on new linux box Eliot Gable <egable+pgsql-performance@gmail.com>
Re: performance on new linux box "Kevin Grittner" <Kevin.Grittner@wicourts.gov>
Re: performance on new linux box Ryan Wexler <ryan@iridiumsuite.com>
Re: performance on new linux box "Joshua D. Drake" <jd@commandprompt.com>
Re: performance on new linux box "Joshua D. Drake" <jd@commandprompt.com>
Re: performance on new linux box Craig James <craig_james@emolecules.com>
Re: performance on new linux box Russell Smith <mr-russ@pws.com.au>
Re: performance on new linux box Samuel Gendler <sgendler@ideasculptor.com>
Re: performance on new linux box Ryan Wexler <ryan@iridiumsuite.com>
Re: performance on new linux box Greg Smith <greg@2ndquadrant.com>
Re: performance on new linux box Andy Colson <andy@squeakycode.net>
Re: performance on new linux box Rob Wultsch <wultsch@gmail.com>
Re: performance on new linux box "Pierre C" <lists@peufeu.com>
Ryan Wexler  wrote:
 
> It still amazes me that it would account for a 5x change in IO.
 
If you were doing one INSERT per database transaction, for instance,
that would not be at all surprising.  If you were doing one COPY in
of a million rows, it would be a bit more surprising.
 
Each COMMIT of a database transaction, without caching, requires
that you wait for the disk to rotate around to the right position. 
Compared to the speed of RAM, that can take quite a long time.  With
write caching, you might write quite a few adjacent disk sectors to
the cache, which can then all be streamed to disk on one rotation. 
It can also do tricks like writing a bunch of sectors on one part of
the disk before pulling the heads all the way over to another
portion of the disk to write a bunch of sectors.
 
It is very good for performance to cache writes.
 
-Kevin
В списке pgsql-performance по дате отправления
От: David Boreham
Дата:
От: Richard Yen
Дата:
FAQ