Re: Setting "nice" values

From: Scott Marlowe <smarlowe(at)g2switchworks(dot)com>
To: Madison Kelly <linux(at)alteeve(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Setting "nice" values
Date: 2006-11-02 15:20:36
Message-ID: 1162480836.28047.20.camel@state.g2switchworks.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Thu, 2006-11-02 at 09:14, Madison Kelly wrote:
> Hi all,
>
> I've got a script (perl, in case it matters) that I need to run once
> a month to prepare statements. This script queries and updates the
> database a *lot*. I am not concerned with the performance of the SQL
> calls so much as I am about the impact it has on the server's load.
>
> Is there a way to limit queries speed (ie: set a low 'nice' value on
> a query)? This might be an odd question, or I could be asking the
> question the wrong way, but hopefully you the idea. :)

While you can safely set the priority lower on the calling perl script,
setting db backend priorities lower can result in problems caused by
"priority inversion" Look up that phrase on the pgsql admin, perform,
general, or hackers lists for an explanation, or go here:

http://en.wikipedia.org/wiki/Priority_inversion

I have a simple script that grabs raw data from an oracle db and shoves
it into a postgresql database for reporting purposes. Every 100 rows I
put into postgresql, I usleep 10 or so and the load caused by that
script on both systems is minimal. You might try something like that.

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Madison Kelly 2006-11-02 15:25:07 Re: Setting "nice" values
Previous Message Steven Flatt 2006-11-02 15:15:30 Re: Database-wide vacuum can take a long time, duringwhich tables are not being analyzed