integreat-transporter-bull
v1.4.0
Published
Bull Queue Transporter for Integreat
Downloads
338
Readme
Bull Queue Transporter for Integreat (Redis backed queue)
This implementation is based on Bull.
Getting started
Prerequisits
Requires node v18 and Integreat v1.0.
Installing and using
Install from npm:
npm install integreat-transporter-bullExample of use:
import Integreat from 'integreat'
import bullTransporter from 'integreat-transporter-bull'
import defs from './config'
const great = Integreat.create(defs, {
transporters: { bull: bullTransporter() },
})
// ... and then dispatch actions as usualExample source configuration:
{
id: 'store',
transporter: 'bull',
auth: true,
endpoints: [
{
options: {
queueId: 'bull-queue',
maxConcurrency: 5,
}
}
]
}Note: In the example above, auth is set to true, to let Integreat know
we don't require any authenticaton for this service. This is the correct way to
do it when you have a Redis database without authentication or when you include
the password in the url (this is not recommended, although it is a normal
convention for Redis). You may, however, pass a Redis username and/or password
through an authenticator set on the auth prop of the service defintion. The
expected props are key for the username and secret for the password. You may
also specify the username and password on the options object (see below).
Available properties for the options object:
queue: An existing bull queue object to reuse instead of having the transporter create its ownqueueId: The queue id for the bull queue. Default isgreatsubQueueId: Bull support different job types in the same queue. By settingsubQueueId, jobs will be pushed to the queue with this string as job type, and in effect creating a "sub-queue". When you don't specify subQueueId`, the default job type will be used.maxConcurrency: Specifies how many parallell jobs Integreat may pick from the queue. Note that when setting up sub queues, one shared handler serves all sub-queues of the same main queue, so only themaxConcurrencyfrom the first sub queue applies. Giving each sub queue its own handler is not an option, as Bull would then sum themaxConcurrencyvalues across them. Default is1.dontListen: Whentrue, Integreat will not listen for new jobs on the queue. This is much the same as settingmaxConcurrencyto 0, but it also prevents Integreat from creating a queue listener. Default isfalse.redis: A redis connection url or an object with the properties listed below.keyPrefix: When this is set, all Redis keys will be prefixed with this string. Default prefix isbullbullSettings: Advanced settings passed directly to bull. See the AdvancedSettings object in the bull documentation.eventListenersWarnLimit: Node will by default give a warning if more than 10 event listeners are added for a particular event. With many sub-queues you may quickly run into that limit. As this is only a warning, it doesn't matter to much, but if you get used to disregarding this warning, you might miss cases where it is actually a problem. Set a high enough number here to avoid getting warnings for a number you know is fine. Default is 10.
The available properties for the redis options object are as follow:
uri: The entire URL of Redis databasehost: The Redis server hostname, default islocalhostport: The Redis server port, default is6379auth: The Redis username askeyand Redis password assecrettls: Set totrueto enable TLS. Default isfalseconnectTimeout: How long in milliseconds the client will wait before killing a socket due to inactivity during initial connection. Defaults to 10000 (10 seconds).reconnectOnError: Whether or not to reconnect (and optionally resend failed command) on Redis errors. Defaults tonoReconnect. Options are:noReconnect: Do not reconnect.reconnectOnly: Reconnect. Do not resend failed command.reconnectAndResend: Reconnect and resend failed command.
You may choose to set the uri or specify the individual properties.
Dispatching an action to the queue
When an action is dispatched in Integreat, in a setup with a queue, any action
with meta.queue set to true will be passed to the queue. When an action is
pulled from the queue, it is again dispatched to the queue service, if it is
listening.
meta.queue may also be a Unix timestamp (millieseconds since epoc, aka
1970-01-01), in which case the action will be delayed until the timestamp is
reached, and then dispatched as normal.
Stop listening
The transporter implements Integreat's stopListening() method. When called,
the queue listener for that connection stops picking up new jobs (its
dispatch/authenticate handlers are detached), while the underlying Bull
queue stays connected so that send() keeps working and other connections
sharing the same queue are unaffected. The connection is fully torn down only
on disconnect().
Debugging
Run Integreat with env variable DEBUG=integreat:transporter:bull, to receive
debug messages.
Running the tests
The tests can be run with npm test.
Contributing
Please read CONTRIBUTING for details on our code of conduct, and the process for submitting pull requests.
License
This project is licensed under the ISC License - see the LICENSE file for details.
