rabbitmq-server/deps/rabbitmq_random_exchange
Michal Kuratczyk 1a2126676d Update CLA URL 2021-09-23 14:29:36 +02:00
..
include Created an empty include dir in order for make package to work 2011-04-27 08:37:48 +02:00
src Bump (c) year 2021-01-22 09:00:14 +03:00
test Adapt to the current build system used by RabbitMQ plugins 2017-09-08 14:28:47 -04:00
.gitignore Git: Ignore copied CLI 2019-12-12 15:04:05 +01:00
.travis.yml Travis CI: Update config from rabbitmq-common 2020-03-04 14:24:31 +01:00
BUILD.bazel Add dialyze for remaning tier-1 plugins 2021-06-01 10:19:10 +02:00
CODE_OF_CONDUCT.md URL Cleanup 2019-03-20 03:20:54 -05:00
CONTRIBUTING.md Update CLA URL 2021-09-23 14:29:36 +02:00
LICENSE Update LICENSE 2020-07-20 12:01:13 +01:00
LICENSE-APACHE2 Update copyright (year 2020) 2020-03-10 16:42:33 +01:00
LICENSE-MPL-RabbitMQ Revert drop of Exhibit B on MPL 2.0 2020-07-20 17:02:57 +01:00
Makefile Remove duplicate rabbitmq-components.mk and erlang.mk files 2021-03-22 15:40:19 +01:00
README.md URL Cleanup 2019-03-20 03:20:54 -05:00

README.md

RabbitMQ Random Exchange Type

This exchange type is for load-balancing among consumers. It's basically a direct exchange, with the exception that, instead of each consumer bound to that exchange with the same routing key getting a copy of the message, the exchange type randomly selects a queue to route to.

There is no weighting or anything, so maybe load "balancing" might be a bit of a misnomer. It uses Erlang's crypto:rand_uniform/2 function, if you're interested.

Installation

Install the corresponding .ez files from our GitHub releases or Community Plugins page.

Then run the following command:

rabbitmq-plugins enable rabbitmq_random_exchange

Building from Source

Please see RabbitMQ Plugin Development guide.

To build the plugin:

git clone git://github.com/rabbitmq/rabbitmq-random-exchange.git
cd rabbitmq-random-exchange
make

Then copy all the *.ez files inside the plugins folder to the RabbitMQ plugins directory and enable the plugin:

[sudo] rabbitmq-plugins enable rabbitmq_random_exchange

Usage

To create a random, just declare an exchange providing the type "x-random".

channel.exchangeDeclare("logs", "x-random");

and bind several queues to it. Routing keys will be ignored by modern releases of this exchange plugin: the binding and its target queue (exchange) are picked entirely randomly.

Extended Example

This example uses Bunny and demonstrates how the plugin is mean to be used with 3 queues:

#!/usr/bin/env ruby

require 'bundler'
Bundler.setup(:default)
require 'bunny'

c  = Bunny.new; c.start
ch = c.create_channel

rx  = ch.exchange("x.rnd", durable: true, type: "x-random")

q1 = ch.queue("r1").bind(rx)
q2 = ch.queue("r2").bind(rx)
q3 = ch.queue("r3").bind(rx)

ch.confirm_select

100.times do
  rx.publish(rand.to_s, routing_key: rand.to_s)
end

ch.wait_for_confirms

# the consumer part is left out: see
# management UI

puts "Done"

License

See LICENSE.