- Typescript type defs for singletonNextSlot config updated via PR.
- Typescript type defs for deletion config updated via PR.
- Typescript type defs updated for job priority via PR.
- Set default
teamConcurrencyto 1 whenteamSize> 1.
- Typescript type defs updated for static function exports via PR.
- Added support for typeorm with job insertion script via PR.
- Prevented duplicate state completion jobs being created from an expired onComplete() subscription.
- Typescript defs patch
-
Added wildcard pattern matching for subscriptions. The allows you to have 1 subscription over many queues. For example, the following subscription uses the
*placeholder to fetch completed jobs from all queues that start with the textsensor-report-.boss.onComplete('sensor-report-*', processSensorReport);
Wildcards may be placed anywhere in the queue name. The motivation for this feature is adding the capability for an orchestration to use a single subscription to listen to potentially thousands of job processors that just have 1 thing to do via isolated queues.
-
Multiple subscriptions to the same queue are now allowed on the same instance.
Previously an error was thrown when attempting to subscribe to the same queue more than once on the same instance. This was merely an internal concern with worker tracking. Since
teamConcurrencywas introduced in 3.0, it blocks polling until the last job in a batch is completed, which may have the side effect of slowing down queue operations if one job is taking a long time to complete. Being able to have multiple subscriptions isn't necessarily something I'd advertise as a feature, but it's something easy I can offer until implementing a more elaborate producer consumer queue pattern that monitors its promises.Remember to keep in mind that
subscribe()is intended to provide a nice abstraction overfetch()andcomplete(), which are always there if and when you require a use case thatsubscribe()cannot provide. -
Internal state job suffixes are now prefixes. The following shows a comparison of completed state jobs for the queue
some-job.- 3.0:
some-job__state__completed - 3.1:
__state__completed__some-job
This is a internal implementation detail included here if you happen to have any custom queries written against the job tables. The migration will handle this for the job table (the archive will remain as-is).
- 3.0:
- Removed connection string parsing and validation. The pg module bundles pg-connection-string which supports everything I was trying to do previously with connection strings. This resolves some existing issues related to conditional connection arguments as well as allowing auto-promotion of any future enhancements that may be provided by these libraries.
- Retry support added for failed jobs! Pretty much the #1 feature request of all time.
- Retry delay and backoff options added! Expired and failed jobs can now delay a retry by a fixed time, or even a jittered exponential backoff.
- New publish options:
retryDelay(int) andretryBackoff(bool) retryBackoffwill use an exponential backoff algorithm with jitter to somewhat randomize the distribution. Inspired by Marc on the AWS blog post Exponential Backoff and Jitter
- New publish options:
- Backpressure support added to
subscribe()! If your callback returns a promise, it will defer polling and other callbacks until it resolves.- Returning a promise replaces the need to use the job.done() callback, as this will be handled automatically. Any errors thrown will also automatically fail the job.
- A new option
teamConcurrencywas added that can be used along withteamSizefor single job callbacks to control backpressure if a promise is returned.
subscribe()will now return an array of jobs all at once whenbatchSizeis specified.fetch()now returns jobs with a conveniencejob.done()function likesubscribe()- Reduced polling load by consolidating all state-based completion subscriptions to
onComplete()- Want to know if the job failed?
job.data.failedwill be true. - Want to know if the job expired?
job.data.statewill be'expired'. - Want to avoid hard-coding that constant? All state names are now exported in the root module and can be required as needed, like in the following example.
const {states} = require('pg-boss'); if(job.data.state === states.expired) { console.log(`job ${job.data.request.id} in queue ${job.data.request.name} expired`); console.log(`createdOn: ${job.data.createdOn}`); console.log(`startedOn: ${job.data.startedOn}`); console.log(`expiredOn: ${job.data.completedOn}`); console.log(`retryCount: ${job.data.retryCount}`); }
- Want to know if the job failed?
- Batch failure and completion now create completed state jobs for
onComplete(). Previously, if you called complete or fail with an array of job IDs, no state jobs were created. - Added convenience publish functions that set different configuration options:
publishThrottled(name, data, options, seconds, key)publishDebounced(name, data, options, seconds, key)publishAfter(name, data, options, seconds | ISO date string | Date)publishOnce(name, data, options, key)
- Added
deleteQueue()anddeleteAllQueues()api to clear queues if and when needed.
- Removed all events that emitted jobs, such as
failed,expired-job, andjob, as these were all instance-bound and pre-dated the distribution-friendlyonComplete() - Removed extra convenience
done()argument insubscribe()callback in favor of consolidating tojob.done() - Renamed
expired-countevent toexpired - Failure and completion results are now wrapped in an object with a value property if they're not an object
subscribe()with abatchSizeproperty now runs the callback only once with an array of jobs. TheteamSizeoption still calls back once per job.- Removed
onFail(),offFail(),onExpire(),onExpire(),fetchFailed()andfetchExpired(). All job completion subscriptions should now useonComplete()and fetching is consolidated tofetchCompleted(). In order to determine how the job completed, additional helpful properties have been added todataon completed jobs, such asstateandfailed. startInoption has been renamed tostartAfterto make its behavior more clear. Previously, this value accepted an integer for the number of seconds of delay, or a PostgreSQL interval string. The interval string has been replaced with an UTC ISO date time string (must end in Z), or you can pass a Date object.singletonDaysoption has been removed- Dropping node 4 support. All tests in 3.0 have passed in CI on node 4, but during release I removed the Travis CI config for it, so future releases may not work.
- The pgcrypto extension is now used internally for uuid generation with onComplete(). It will be added in the database if it's not already added.
- Adjusted indexes to help with fetch performance
- Errors thrown in job handlers will now correctly serialize into the response property of the completion job.
- Typescript defs patch
- Added
maxconstructor option additional topoolSize - Migration: use pg transaction to avoid inconsistency
- Archive: Existing archive configuration settings now apply to moving jobs into a new table
arvhiveinstead of immediate deletion. This allows the concerns of job indexing and job retention to be separated. - Archive:
deleteArchivedJobsEveryanddeleteCheckIntervalsettings added for defining job retention. The default retention interval is 7 days. - Archive: Changed default archive interval to 1 hour from 1 day.
- Monitoring: Updated contract for
monitor-statesevent to add counts by queue, not just totals. - Monitoring: Adjusted queue size counting to exclude state-based jobs. While these were technically correct in regards to physical record count, it was a bit too difficult to explain.
- Downgraded bluebird to a dev dependency. Always nice to have 1 less dependency.
- Typescript defs patch
- Typescript defs patch
- Typescript defs patch
- Added constructor option
dbfor using an external/existing database connection.
This bypasses having to create an additional connection pool.
- Patch to prevented state transition jobs from being created from existing state transition jobs.
Kind of meta. These were unfetchable and therefor just clutter.
- Patch to allow custom schema name with a connectionString constructor option.
- Patch to fix missing error on
failedevent. via PR #37.
- Patch to fix typescript types path
- Typescript defs
- Patched pg driver to 7.1
- Upgrade pg driver to 7.0
- Added state transition jobs and api for orchestration/saga support.
- Added job fetch batching
- Added
onExpire(jobName, callback)for guaranteed handling of expiration (not just an event anymore) failedwas added as a job status- now emits 'failed' on unhandled subscriber errors instead of 'error', which is far safer
done()insuscribe()callbacks now support passing an error (the popular node convention) to automatically mark the job as failed as well as emitting failed. For example, if you are processing a job and you want to explicitly mark it as failed, you can just calldone(error)at any time.fail(jobId)added for external failure reporting along withfetch()andcomplete()unsubscribe(jobName)added to undo asubscribe()
- Dropped support for node 0.10 and 0.12
- Added new publish option called
singletonKeywas added in order to make sure only 1 job of a certain type is active, queued or in a retry state - Added new publish option called
singletonNextSlotwas added in order to make sure a job is processed eventually, even if it was throttled down (not accepted). Basically, this is debouncing with a lousy name, because I'm not very good at naming things and didn't realize it at time - Added
newJobCheckIntervalandnewJobCheckIntervalSecondstosubscribe()instead of just in the constructor - Added
poolSizeconstructor option to explicitly control the maximum number of connections that can be used against the specified database - 0.x had a data management bug which caused expired jobs to not be archived and remain in the job table.
I also added a fix to the migration script so if you had any old expired jobs they should be automatically archived. - Error handling in subscriber functions!
Previously I've encouraged folks to handle their own errors with try catch and be as defensive as possible in
callback functions passed to
subscribe().
However, it was too easy to miss that at times and if an error occurred that wasn't caught, it had the pretty lousy side effect of halting all job processing. 1.0.0 now wraps all subscriber functions in try catch blocks and emits the 'error' event if one is encountered.