Re: Database transaction related - Mailing list pgsql-general

From John D. Burger
Subject Re: Database transaction related
Date
Msg-id 6C759BC6-9078-40FE-8D58-30B9B5751E8C@mitre.org
Whole thread Raw
In response to Re: Database transaction related  ("Jasbinder Singh Bali" <jsbali@gmail.com>)
Responses Re: Database transaction related
List pgsql-general
Jasbinder Singh Bali wrote:

> could you please elaborate this concept of queue table?

The basic idea is to for the insert trigger to not explicitly kick
off the work you need to have done, but simply insert a row into a
"work request table".  A separate process notices that there is a
work request, and performs the work.  This can be done by a periodic
cron job, or using NOTIFY/LISTEN.

There was a fairly detailed discussion of this last month - the
thread starts here:

   http://archives.postgresql.org/pgsql-general/2007-04/msg01152.php

- John D. Burger
   MITRE



pgsql-general by date:

Previous
From: Oleg Bartunov
Date:
Subject: Re: tsearch2 problem
Next
From: "John D. Burger"
Date:
Subject: Re: Streaming large data into postgres [WORM like applications]