1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
create or replace function pgq_ext.is_event_done(
a_consumer text,
a_batch_id bigint, a_event_id bigint)
returns boolean as $$
declare
res bigint;
begin
perform 1 from pgq_ext.completed_event
where consumer_id = a_consumer
and batch_id = a_batch_id
and event_id = a_event_id;
return found;
end;
$$ language plpgsql security definer;
create or replace function pgq_ext.set_event_done(
a_consumer text, a_batch_id bigint, a_event_id bigint)
returns boolean as $$
declare
old_batch bigint;
begin
-- check if done
perform 1 from pgq_ext.completed_event
where consumer_id = a_consumer
and batch_id = a_batch_id
and event_id = a_event_id;
if found then
return false;
end if;
-- if batch changed, do cleanup
select cur_batch_id into old_batch
from pgq_ext.partial_batch
where consumer_id = a_consumer;
if not found then
-- first time here
insert into pgq_ext.partial_batch
(consumer_id, cur_batch_id)
values (a_consumer, a_batch_id);
elsif old_batch <> a_batch_id then
-- batch changed, that means old is finished on queue db
-- thus the tagged events are not needed anymore
delete from pgq_ext.completed_event
where consumer_id = a_consumer
and batch_id = old_batch;
-- remember current one
update pgq_ext.partial_batch
set cur_batch_id = a_batch_id
where consumer_id = a_consumer;
end if;
-- tag as done
insert into pgq_ext.completed_event (consumer_id, batch_id, event_id)
values (a_consumer, a_batch_id, a_event_id);
return true;
end;
$$ language plpgsql security definer;
|