Publish One, Subscribe Many

Table of Contents

<a name=“introduction” />

Introduction

This gem is a reference implementation for a Publish One, Subscribe Many pattern which is in use at SoundCloud.

The pattern assumes a single load balanced publish point and multiple direct consumption points as outlined in the follow diagram:

In this scenario, a worker’s single publish connection is load balanced to a broker. The workers have consumer connections to all possible brokers ensuring that no matter which broker a message ends up on the consumer can receive it.

Exchanges, queues, and bindings need to be declared upon connection, ensuring that all brokers will converge on the same set of routing information.

Some buzzwor{th,d}y advantages of this setup include:

Drawbacks:

A common error is to conflate availability and durability. In this case, they are treated as separate concerns with the form of availability on offer refering to the ability of all connected clients to get a message from point to point under most conditions.

Durability requires messages to be published as persistent and manual intervention in the case of a node crash to bring the failed node (or disk) back into consumer awareness, to ensure the messages are flushed.

The code in this repository can be used either as a gem available on rubygems.org or as a guide to implement the above pattern using the ruby-amqp gem.

See ./examples/run for usage.

<a name=“test” />

Testing

Run all the tests:

make test

<a name=“deprecations” />

Deprecations

Version 0.2.2:

<a name=“contribute” />

Contribute

For any problems, comments or feedback please create an issue here on GitHub.

<a name=“licence” />

Licence

amqp-subscribe-many is released under the Mozilla Public License Version 2.0