Re: performance on new linux box
От | Kevin Grittner |
---|---|
Тема | Re: performance on new linux box |
Дата | |
Msg-id | 4C35E7CC020000250003328A@gw.wicourts.gov обсуждение исходный текст |
Ответ на | Re: performance on new linux box (Ryan Wexler <ryan@iridiumsuite.com>) |
Список | pgsql-performance |
Ryan Wexler <ryan@iridiumsuite.com> 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 по дате отправления: