Re: Postgres performance Linux vs FreeBSD

Поиск
Список
Период
Сортировка
От Mark Kirkwood
Тема Re: Postgres performance Linux vs FreeBSD
Дата
Msg-id 45DCB5CA.8090807@paradise.net.nz
обсуждение исходный текст
Ответ на Postgres performance Linux vs FreeBSD  (Jacek Zaręba <asthma@polok.pl>)
Список pgsql-performance
Jacek Zarêba wrote:
> Hello, I've set up 2 identical machines, hp server 1ghz p3,
> 768mb ram, 18gb scsi3 drive. On the first one I've installed
> Debian/GNU 4.0 Linux, on the second FreeBSD 6.2. On both
> machines I've installed Postgresql 8.2.3 from sources.
> Now the point :)) According to my tests postgres on Linux
> box run much faster then on FreeBSD, here are my results:
>

With respect to 'select count(*) from ...' being slower on FreeBSD,
there are a number of things to try to make FreeBSD faster for this sort
of query. Two I'm currently using are:

- setting sysctl vfs.read_max to 16 or 32
- rebuilding the relevant filesystem with 32K blocks and 4K frags

I have two (almost) identical systems - one running Gentoo, one running
FreeBSD 6.2. With the indicated changes the FreeBSD system performs
pretty much the same as the Gentoo one.

With respect to the 'explain analyze' times, FreeBSD has a more accurate
and more expensive gettimeofday call - which hammers its 'explain
analyze' times compared to Linux.

Cheers

Mark


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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: Auto-Vacuum in 8.1 was ineffective for me. 8.2 may work better?
Следующее
От: Dan Harris
Дата:
Сообщение: Re: General advice on user functions