Re: Postgres performance Linux vs FreeBSD

From: Mark Kirkwood <markir(at)paradise(dot)net(dot)nz>
To: Jacek Zarêba <asthma(at)polok(dot)pl>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Postgres performance Linux vs FreeBSD
Date: 2007-02-21 21:12:42
Message-ID: 45DCB5CA.8090807@paradise.net.nz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Dan Harris 2007-02-21 21:40:54 Re: General advice on user functions
Previous Message Alvaro Herrera 2007-02-21 20:51:30 Re: Auto-Vacuum in 8.1 was ineffective for me. 8.2 may work better?