Re: PostgreSQL as advanced job queuing system
Dominique Devienne <ddevienne@gmail.com>
From: Dominique Devienne <ddevienne@gmail.com>
To: Merlin Moncure <mmoncure@gmail.com>
Cc: ushi <ushi@mailbox.org>, pgsql-general@lists.postgresql.org
Date: 2024-03-25T09:42:50Z
Lists: pgsql-general
On Sat, Mar 23, 2024 at 3:13 AM Merlin Moncure <mmoncure@gmail.com> wrote: > On Fri, Mar 22, 2024 at 6:58 AM ushi <ushi@mailbox.org> wrote: > >> the idea to implement a job queuing system using PostgreSQL. >> > > I wrote an enterprise scheduler, called pgtask, which ochestates a very > large amount of work [...] > Hi. Anything you can share? OSS? Doesn't look like it... If it's not, a more details higher level architecture overview would be nice. > I'm running at a pretty high scale and it's reliable. [...] > Sounds great. > Being able to manage the state explicitly in the database is wonderful, if > you know what you're doing. > Indeed. I want to reduce the complexity of the stack as much as possible, and rely only on PostgreSQL, if possible. We don't need a super duper queue or full distributed system. So a PostgreSQL-based solution aught to be enough. --DD