Re: feature request: consume asynchronous notification via a function

From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Merlin Moncure <mmoncure(at)gmail(dot)com>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: feature request: consume asynchronous notification via a function
Date: 2017-11-21 17:55:52
Message-ID: CA+TgmoY2q1xykTtakEUzZxZ22GxUxc19nHoH6AvqxSJikd78yw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Tue, Nov 21, 2017 at 11:32 AM, Merlin Moncure <mmoncure(at)gmail(dot)com> wrote:
>> I think that wouldn't work very well, because I think we must have a
>> snapshot open in order to run pg_get_notifications(), and that means
>> we're holding back the system-wide xmin.
>
> I am very much looking at the new stored procedure functionality and
> imaging a loop like this:
>
> LOOP
> FOR r IN SELECT * FROM pg_get_notifications(30)
>
> LOOP
> PERFORM do_stuff(r);
> END LOOP;
>
> COMMIT; -- advance xmin etc
> END LOOP;
>
> ...I'm obviously speculatively thinking ahead to Peter's stored
> procedure work seeing the light of day (which, based on the utility vs
> the simplicity of the patch and how it works in testing I'm very
> optimistic about). The above would provide real time response to
> certain actions I do now with polling, typically in bash. Without
> stored procedures, I agree that this would be a foot gun.

Yeah, if you keep the timeout fairly short, it would probably work OK
(with Peter's stuff).

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2017-11-21 18:09:58 Re: [COMMITTERS] pgsql: Add hash partitioning.
Previous Message Robert Haas 2017-11-21 17:54:54 Re: View with duplicate GROUP BY entries