Re: Setting "nice" values

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: Setting "nice" values
Дата
Msg-id 1162480836.28047.20.camel@state.g2switchworks.com
обсуждение исходный текст
Ответ на Setting "nice" values  (Madison Kelly <linux@alteeve.com>)
Ответы Re: Setting "nice" values  (Madison Kelly <linux@alteeve.com>)
Список 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.

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

Предыдущее
От: "Steven Flatt"
Дата:
Сообщение: Re: Database-wide vacuum can take a long time, duringwhich tables are not being analyzed
Следующее
От: Madison Kelly
Дата:
Сообщение: Re: Setting "nice" values