An advance Node.js RabbitMQ client from the author of Rascal. It is in the early stages of development, has an unstable API and is not production ready.
Scamp allows you to choose your connection topology by providing a range of pluggable connection and channel sources, allowing you to optimise your application for performance and reliability. For example...
βββββββββββββββββββββββββββ βββββββββββββββββββββββββββ
β β Connection β β
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β β β β
β Producer / Consumer β ββββββββββββββββββChannelββββββββββββββββββββ£ Virtual Host β
β β β β
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β β β β
βββββββββββββββββββββββββββ βββββββββββββββββββββββββββ
const amqplib = require('amqplib');
const { ReliableConnectionSource, ReliableChannelSource } = require('scamp');
const connectionOptions = { hostname: 'rabbitmq.example.com' };
const socketOptions = { timeout: 10000 };
const connectionSource = new ReliableConnectionSource({ amqplib, connectionOptions, socketOptions });
const channelSource = new ReliableChannelSource({ connectionSource });
const channel = await channelSource.getChannel();
The connection and channel will automatically recover from errors. The channel source will consistently return the same channel once it has been acquired (assuming it was not replaced due to a channel error).
βββββββββββββββββββββββββββ βββββββββββββββββββββββββββ
β β Connection β β
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β β β β
β β βββββββββββββββββChannel 1βββββββββββββββββββ£ β
β Producer β β Virtual Host β
β β βββββββββββββββββChannel 2βββββββββββββββββββ£ β
β β β β
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β β β β
βββββββββββββββββββββββββββ βββββββββββββββββββββββββββ
const amqplib = require('amqplib');
const { ReliableConnectionSource, RotatingChannelSource } = require('scamp');
const connectionOptions = { hostname: 'rabbitmq.example.com' };
const socketOptions = { timeout: 10000 };
const connectionSource = new ReliableConnectionSource({ amqplib, connectionOptions, socketOptions });
const rotatingChannelSource = new RotatingChannelSource({ channelSources: [
new ReliableChannelSource({ connectionSource }),
new ReliableChannelSource({ connectionSource }),
]});
const channel = await channelSource.getChannel();
The connection and channels will automatically recover from errors. Repeatly calling channelSource.getChannel()
will cycle through the available channel sources, potentially providing better throughput than if using a single channel. A channel source will consistently return the same channel once it has been acquired (assuming it was not replaced due to a channel error).
βββββββββββββββββββββββββββ Connection 1 βββββββββββββββββββββββββββ
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β β β β
β β ββββββββββββββββChannel 1ββββββββββββββββββββ£ β
β β β β
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β Producer β β Virtual Host β
β β Connection 2 β β
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β β β β
β β βββββββββββββββββChannel 2βββββββββββββββββββ£ β
β β β β
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
βββββββββββββββββββββββββββ βββββββββββββββββββββββββββ
const amqplib = require('amqplib');
const { ReliableConnectionSource, ReliableChannelSource, RotatingConnectionSource } = require('scamp');
const connectionOptions = { hostname: 'rabbitmq.example.com' };
const socketOptions = { timeout: 10000 };
const connectionSource1 = new ReliableConnectionSource({ amqplib, connectionOptions, socketOptions });
const connectionSource2 = new ReliableConnectionSource({ amqplib, connectionOptions, socketOptions });
const channelSource = new RotatingConnectionSource({ channelSources: [
new ReliableChannelSource({ connectionSource: connectionSource1 }),
new ReliableChannelSource({ connectionSource: connectionSource2 }),
]});
const channel = await channelSource.getChannel();
The connection and channels will automatically recover from errors. Repeatly calling channelSource.getChannel()
will cycle through the available channel sources, which are backed by their respective connection sources, potentially providing better throughput than if using a single connection.
βββββββββββββββββββββββββββ Producer Connection βββββββββββββββββββββββββββ
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β β β β
β β βββββββββββββProducer Channelββββββββββββββββ£ β
β β β β
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β Producer / Consumer β β Virtual Host β
β β Consumer Connection β β
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β β β β
β β βββββββββββββConsumer Channelββββββββββββββββ£ β
β β β β
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
βββββββββββββββββββββββββββ βββββββββββββββββββββββββββ
const amqplib = require('amqplib');
const { ReliableConnectionSource, ReliableChannelSource, RotatingConnectionSource, ScampEvents } = require('scamp');
const connectionOptions = { hostname: 'rabbitmq.example.com' };
const socketOptions = { timeout: 10000 };
const producerConnectionSource = new ReliableConnectionSource({ amqplib, connectionOptions, socketOptions });
const producerChannelSource = new ReliableChannelSource({ connectionSource: producerConnectionSource });
const consumerConnectionSource = new ReliableConnectionSource({ amqplib, connectionOptions, socketOptions });
const consumerChannelSource = new ReliableChannelSource({ connectionSource: consumerConnectionSource });
const producerChannel = await producerChannelSource.getChannel();
const consumerChannel = await consumerChannelSource.getChannel();
The connection and channels will automatically recover from errors, however you will need to re-consume. Each channel source will consistently return the same channel once it has been acquired (assuming it was not replaced due to a channel error).
βββββββββββββββββββββββββββ Connection 1 βββββββββββββββββββββββββββ
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β β Channel 1 β β
β β βββββββββββββββββββββββββββββββββββββββββββββ£ Virtual Host β
β β β β
β ββββββββββββββββββββββββββββββββββββββββββββββ€ β
β Producer / Consumer β βββββββββββββββββββββββββββ
β β Connection 2 (passive) βββββββββββββββββββββββββββ
β β β β β β β β β β β β β β β β β β β β β β β β β
β β β β
β β β β β β β β Channel 2 (passive) β β β β β ββ Virtual Host β
β β β β
β β β β β β β β β β β β β β β β β β β β β β β ββ β
βββββββββββββββββββββββββββ βββββββββββββββββββββββββββ
const amqplib = require('amqplib');
const { HighAvailabilityConnectionSource, ReliableChannelSource } = require('scamp');
const optionSets = [
{
connectionOptions: { hostname: 'rabbitmq-primary.example.com' },
socketOptions: { timeout: 10000 },
},
{
connectionOptions: { hostname: 'rabbitmq-secondary.example.com' },
socketOptions: { timeout: 10000 },
},
];
const connectionSource = new HighAvailabilityConnectionSource({ amqplib, optionSets });
const channelSource = new ReliableChannelSource({ connectionSource });
const channel = await channelSource.getChannel();
The connection and channels will automatically recover from errors. If a connection error occurs, the connection source will rotate through the available vhosts until a connection is successfully restablished, delaying each attempt by an exponentially increasing amount of time.
The broker is a container for one or more virtual hosts and repository for common config such as encryption profiles and content parsers.
const broker = new Broker({
encryption: {
'profile-1': {
key: 'blah-blah-blah',
algorithm: 'aes256',
ivLength: 16,
}
},
parsers: {
'application/json': new JsonParser(),
'application/xml', new XmlParser(),
}
});
You can shutdown all vhosts managed by the broker using broker.shutdown
. You can also nuke
, or purge
matching queues and exchanges, which is useful for testing. e.g.
let broker;
beforeAll(async () => {
broker = await initBroker();
});
beforeEach(async () => {
await broker.purge();
});
afterAll(async () => {
await broker.nuke(/^test_/);
});
Virtual Hosts are obtained by connecting to a broker.
const connectionSource = new SimpleConnectionSource();
const vhost = await broker.connect({
connectionSource,
options: {
host: 'localhost',
port: 5672,
name: 'vh1',
user: 'bob',
password: 'secret',
params: {
heartbeat: 10,
},
socket: {
timeout: 10000,
}
}
});
Option | Type | Required | Default | Notes |
---|---|---|---|---|
host | string | yes | localhost | The host to connect to |
port | number | yes | 5672 | The port to connect to |
name | string | yes | / | The name of the virtual host. Use / for RabbitMQ's default virtual host |
user | string | yes | guest | The username to connect with. |
password | string | yes | password | The password to connect with. |
params | object | no | For specifying RabbitMQ query params. You should consider setting a heartbeat, channel_max and connection_timeout | |
socket | object | no | { clientProperties: { name: 'scamp', version: version } } | For specifying underlying socket options. |
Exchanges are obtained from a virtual host using vhost.declareExchange. You can use the passive
option to determine whether the exchange should be created if it doesn't already exist. Declaring an exchange passively which does not already exist will result in an error. Attempting to redeclare an exchange with different attributes will also result in an error. Once you have an instance of an exchange you can create a producer and start publishing messages.
const exchange = await vhost.declareExchange({
name: 'ex1',
type: 'topic',
passive: false,
arguments: {
'x-dead-letter-exchange': 'dlx',
},
});
Option | Type | Required | Default | Notes |
---|---|---|---|---|
name | string | yes | The exchange name | |
type | string | yes | topic | The exchange type. Must be one of direct, fanout, topic or headers |
passive | boolean | no | true | Set to false to create the exchange if it does not already exist |
durable | boolean | no | true | If true, the exchange will survive broker restarts. |
internal | boolean | no | false | If true, messages cannot be published directly to the exchange (i.e., it can only be the target of bindings, or possibly create messages ex-nihilo). |
autoDelete | boolean | no | false | If true, the exchange will be destroyed once the number of bindings for which it is the source drop to zero. |
alternateExchange | string | no | An exchange to send messages to if this exchange canβt route them to any queues. | |
arguments | object | no | Use to specify custom RabbitMQ options, e.g. x-dead-letter-exchange |
Like exchanges, queues are also obtained from a virtual host using vhost.declareQueue. You can use the passive
option to determine whether the queue should be created if it doesn't already exist. Declaring a queue passively which does not already exist will result in an error. Attempting to redeclare a queue with different attributes will also result in an error. Once you have an instance of an queue you can create a producer and start publishing messages.
const queue = await vhost.declareQueue({
name: 'q1',
passive: false,
arguments: {
'x-message-ttl': 1000,
},
});
You can bind queues to exchanges as follows...
// Fanout exchange
await queue.bind(exchange);
// Topic or direct exchange
await queue.bind(exchange, { keys: ['a.b.c'] });
// Headers exchange
await queue.bind(exchange, { arguments { format: 'pdf', type: 'report', 'x-match': 'all' } });
Or bind two exchanges like this...
// Fanout exchange
await exchange1.bind(exchange2);
// Topic or direct exchange
await exchange1.bind(exchange2, { keys: ['a.b.c'] });
// Header exchange
await exchange1.bind(exchange2, { arguments: { format: 'pdf', type: 'report', 'x-match': 'all' } });
You can also unbind, but you must be careful to use binding keys which actually exist.
await queue.unbind(exchange { keys });
await exchange.unbind(exchange2, { keys });
Option | Type | Required | Default | Notes |
---|---|---|---|---|
name | string | yes | The queue name | |
passive | boolean | no | true | Set to false to create the queue if it does not already exist |
durable | boolean | no | true | If true, the queue will survive broker restarts, modulo the effects of exclusive and autoDelete |
exclusive | boolean | no | false | If true, scopes the queue to the connection. |
autoDelete | boolean | no | false | If true, the queue will be deleted when the number of consumers drops to zero. |
alternateExchange | string | no | An exchange to send messages to if this exchange canβt route them to any queues. | |
arguments | object | no | Use to specify custom RabbitMQ options, e.g. x-dead-letter-exchange |
Producers are obtained from queues or exchanges. They require a channel source for obtaining channels. For example...
const channelSource = new SimpleChannelSource();
const producer = queue.getProducer({ channelSource })
.setMessageId(uuid)
.useConfirmChannel(true)
.detectContentType(true)
.encryptContent('profile-1'})
.timeout(1000);
await new Promise((resolve, reject) => {
producer.publish('hello world')
.on('success', message => {
resolve();
})
.on('returned', message => {
// Already resolved
console.warn(`Message was returned ${message.properties.messageId}`);
})
.on('error', (err, message) => {
reject(err);
})
.on('busy', (message) => {
// May want to apply back pressure to whatever is calling the publisher
})
.on('ready', () => {
// May want to relax back pressure
});
});
await producer.close();
await vhost.disconnect();
Consumers are obtained from a queue. They require a channel source for obtaining channels. For example...
const channelSource = new SimpleChannelSource();
const consumer = queue.createConsumer({ channelSource })
.setPrefetch(10)
.setContentType('application/xml')
.decryptContent(true)
.parseContent(true);
// The consumer will only start consuming messages once the on message handler is registered
consumer.subscribe()
.on('message', (message) => {
console.log(message.content);
await message.ack();
}).on('error', (err, message) => {
console.error(err);
});