An open API service indexing awesome lists of open source software.

https://github.com/pgq/pgq-ext

Remote queue position tracking for PgQ consumers
https://github.com/pgq/pgq-ext

Last synced: 5 months ago
JSON representation

Remote queue position tracking for PgQ consumers

Awesome Lists containing this project

README

          

Track processed batches and events in target DB
================================================

Batch tracking is OK.

Event tracking is OK if consumer does not use retry queue.

Batch tracking
--------------

is_batch_done(consumer, batch)

returns:

true - batch is done already
false - batch is not done yet

set_batch_done(consumer, batch)

returns:

true - tagging successful, batch was not done yet
false - batch was done already

Event tracking
--------------

is_batch_done(consumer, batch, event)

returns:

true - event is done
false - event is not done yet

set_batch_done(consumer, batch, event)

returns:

true - tagging was successful, event was not done
false - event is done already