Re: RES: Priority to a mission critical transaction

From: Mark Lewis <mark(dot)lewis(at)mir3(dot)com>
To: Brian Hurt <bhurt(at)janestcapital(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: RES: Priority to a mission critical transaction
Date: 2006-11-29 15:03:44
Message-ID: 1164812624.9690.500.camel@archimedes
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-advocacy pgsql-performance

On Wed, 2006-11-29 at 08:25 -0500, Brian Hurt wrote:
...
> I have the same question. I've done some embedded real-time
> programming, so my innate reaction to priority inversions is that
> they're evil. But, especially given priority inheritance, is there any
> situation where priority inversion provides *worse* performance than
> running everything at the same priority? I can easily come up with
> situations where it devolves to that case- where all processes get
> promoted to the same high priority. But I can't think of one where
> using priorities makes things worse, and I can think of plenty where it
> makes things better.
...

It can make things worse when there are at least 3 priority levels
involved. The canonical sequence looks as follows:

LOW: Aquire a lock
MED: Start a long-running batch job that hogs CPU
HIGH: Wait on lock held by LOW task

at this point, the HIGH task can't run until the LOW task releases its
lock. but the LOW task can't run to completion and release its lock
until the MED job completes.

(random musing): I wonder if PG could efficiently be made to temporarily
raise the priority of any task holding a lock that a high priority task
waits on. I guess that would just make it so that instead of HIGH tasks
being effectively reduced to LOW, then LOW tasks could be promoted to
HIGH.

-- Mark Lewis

In response to

Responses

Browse pgsql-advocacy by date

  From Date Subject
Next Message Brian Hurt 2006-11-29 15:17:10 Re: RES: Priority to a mission critical transaction
Previous Message Brian Hurt 2006-11-29 13:25:57 Re: RES: Priority to a mission critical transaction

Browse pgsql-performance by date

  From Date Subject
Next Message Brian Hurt 2006-11-29 15:17:10 Re: RES: Priority to a mission critical transaction
Previous Message Brian Hurt 2006-11-29 13:25:57 Re: RES: Priority to a mission critical transaction