Re: limit number of concurrent callers to a stored proc?

From: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
To: Alan Stange <stange(at)rentec(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: limit number of concurrent callers to a stored proc?
Date: 2005-08-18 02:36:07
Message-ID: 4303F417.3090307@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

You could use a 1 column/1 row table perhaps. Use some sort of locking
mechanism.

Also, check out contrib/userlock

Chris

Alan Stange wrote:
> Hello all,
>
> is there a simple way to limit the number of concurrent callers to a
> stored proc?
>
> The problem we have is about 50 clients come and perform the same
> operation at nearly the same time. Typically, this query takes a few
> seconds to run, but in the case of this thundering herd the query time
> drops to 70 seconds or much more. The query can return up to 15MB of data.
>
> The machine is a dual opteron, 8 GB memory, lots of fiber channel disk,
> Linux 2.6, etc.
>
> So, I'm thinking that a semaphore than will block more than N clients
> from being in the core of the function at one time would be a good thing.
> Thanks!
>
> -- Alan
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faq

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Ron 2005-08-18 03:19:04 Re: limit number of concurrent callers to a stored
Previous Message Gavin Sherry 2005-08-18 02:30:24 Re: limit number of concurrent callers to a stored proc?