Re: Postgres performance Linux vs FreeBSD - Mailing list pgsql-performance

From Mark Kirkwood
Subject Re: Postgres performance Linux vs FreeBSD
Date
Msg-id 45DCB5CA.8090807@paradise.net.nz
Whole thread Raw
In response to Postgres performance Linux vs FreeBSD  (Jacek Zaręba <asthma@polok.pl>)
List 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 by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: Auto-Vacuum in 8.1 was ineffective for me. 8.2 may work better?
Next
From: Dan Harris
Date:
Subject: Re: General advice on user functions