Re: Variable (degrading) performance - Mailing list pgsql-performance

From Heikki Linnakangas
Subject Re: Variable (degrading) performance
Date
Msg-id 466D8BAF.604@enterprisedb.com
Whole thread Raw
In response to Variable (degrading) performance  (Vladimir Stankovic <V.Stankovic@city.ac.uk>)
Responses Re: Variable (degrading) performance
List pgsql-performance
Vladimir Stankovic wrote:
> I'm running write-intensive, TPC-C like tests. The workload consist of
> 150 to 200 thousand transactions. The performance varies dramatically,
> between 5 and more than 9 hours (I don't have the exact figure for the
> longest experiment). Initially the server is relatively fast. It
> finishes the first batch of 50k transactions in an hour. This is
> probably due to the fact that the database is RAM-resident during this
> interval. As soon as the database grows bigger than the RAM the
> performance, not surprisingly, degrades, because of the slow disks.
> My problem is that the performance is rather variable, and to me
> non-deterministic. A 150k test can finish in approx. 3h30mins but
> conversely  it can take more than 5h to complete.
> Preferably I would like to see *steady-state* performance (where my
> interpretation of the steady-state is that the average
> throughput/response time does not change over time). Is the steady-state
> achievable despite the MVCC and the inherent non-determinism between
> experiments? What could be the reasons for the variable performance?

Steadiness is a relative; you'll never achieve perfectly steady
performance where every transaction takes exactly X milliseconds. That
said, PostgreSQL is not as steady as many other DBMS's by nature,
because of the need to vacuum. Another significant source of
unsteadiness is checkpoints, though it's not as bad with fsync=off, like
you're running.

I'd suggest using the vacuum_cost_delay to throttle vacuums so that they
don't disturb other transactions as much. You might also want to set up
manual vacuums for the bigger tables, instead of relying on autovacuum,
because until the recent changes in CVS head, autovacuum can only vacuum
one table at a time, and while it's vacuuming a big table, the smaller
heavily-updated tables are neglected.

> The database server version is  8.1.5 running on Fedora Core 6.

How about upgrading to 8.2? You might also want to experiment with CVS
HEAD to get the autovacuum improvements, as well as a bunch of other
performance improvements.

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

pgsql-performance by date:

Previous
From: Vladimir Stankovic
Date:
Subject: Variable (degrading) performance
Next
From: Dave Cramer
Date:
Subject: Re: How much ram is too much