Make sure you have an update to build. Either pull from stage or run ds build
.
- Install Rabbit
If you have brew installed, http://www.rabbitmq.com/install-homebrew.html
Follow the steps for installing, adding to your .bash_profile and then you can run
rabbitmq-server
Locally, you can now access RabbitMQ at http://localhost:15672 guest/guest
You'll see tabs for Exchanges and Queues.
An Exchange ties the Queues together. If you want to send a messag,e you send directly to an Exchange, not a Queue.
An app called a Producer sends messages to an Exchange. that exchange takes care of the distribution of the message ot th equeus attached to it.
Producers and Consumers use settings to set up and access the Queues
In
message_broker_producer.module
>message_broker_producer_request
, add a new queue into the$config
array.e.g.
so we'll create a new queue
$config['queue']['zendesk']