timgit / pg-boss

Queueing jobs in Postgres from Node.js like a boss
MIT License
2.04k stars 157 forks source link

How to process and report on large batch jobs that are specific per user #174

Closed sieppl closed 4 years ago

sieppl commented 4 years ago

Thank you for the great package, after reading the documentation I am trying to understand how pg-boss can be used in my context. My requirements are:

The scope of pg-boss for my scenario

Out of scope of pg-boss for my scenario

Can you confirm that I understood the scope and features of pg-boss correct?

timgit commented 4 years ago

the internal job table of pg-boss will hold the status of each job unless I delete them on purpose

This is mostly true based on your configuration. There are 2 jobs tables, job and archive. Once a job is completed, it will be moved to the archive after maintenance is run. It will be deleted from the archive eventually.