[rabbitmq-discuss] Understanding RabbitMQ clustering
Kshitiz Garg
stephanion2002 at gmail.com
Fri Oct 29 07:27:04 BST 2010
Hi,
I have just started working with RabbitMQ for my cloud messaging/eventing
application. The proof of concept worked well with rabbitMQ and Spring AMQP.
Now, I want to start preparing for scalability.
I am able to setup a rabbitMQ cluster with 2 rabbitMQs installed on 2
separate machines. Now I want to know what is achieved by "clustering" in
terms of rabbitMQ.
My spring amqp template has been given a connection Factory like this:
*
<!-- RabbitMQ configurations -->
<!-- Define a connectionFactory -->
<bean id="connectionFactory"
class="org.springframework.amqp.rabbit.connection.SingleConnectionFactory">
<constructor-arg value="localhost" />
<property name="username" value="guest" />
<property name="password" value="guest" />
</bean>
<!-- Configure the admin class -->
<bean id="amqpAdmin"
class="org.springframework.amqp.rabbit.core.RabbitAdmin">
<constructor-arg ref="connectionFactory" />
</bean>*
Here I have specified *localhost*, so now, if I send a amqp message through
rabbitMQ and this localhost broker is not up, will that message go through
its cluster node automatically ?
If that's the case, then what do we mean by high availability?
Thanks,
Kshitiz Garg
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rabbitmq.com/pipermail/rabbitmq-discuss/attachments/20101029/6e0f662d/attachment.htm>
More information about the rabbitmq-discuss
mailing list