Tim Jones
Tim Jones
If pg-boss were to start using advisory locks for the queue, it would fall into the same locking issues that SKIP LOCKED was created to avoid. There may be a...
This sounds like `sendSingleton()`. Did you already try that?
`sendSingleton()` uses a magic string to opt into a different unique constraint for `< 'active'`
When I implemented `sendSingleton()`, it was with a concern that perhaps my original implementation of throttling was not as useful as I had originally planned. :crying_cat_face: It seems to most...
This is the default v1 uuid. You can change this to v4 via the `uuid` configuration if you want
thanks! You can specify the queue as a string in functions `fetch()` and `work()`. If I'm not understanding your question, please include more details.
Thanks for the examples. Can you simplify this by creating a separate queue per type? "A" would be a queue, for example, then you would run as many workers on...
I'll read a bit more into how other queue products implement this for my own research and see what I learn in turns of overlap with pg-boss. While I'm doing...
From https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues-understanding-logic.html > You can't request to receive messages with a specific message group ID. and > When receiving messages from a FIFO queue with multiple message group IDs, Amazon...
There's not a peek() api in pg-boss, so you will need to build this yourself until it exists. Since pg-boss is also a priority queue, the fetch order isn't always...