raffian
raffian

Reputation: 32066

Creating AMQ network of broker clusters on JBoss Fuse 6.2, without fabric

I want to create (2) broker clusters connected by network of brokers in JBoss Fuse 6.2; each cluster has 2 master/slave pairs.

It's a small cluster, so we don't intend to use Fabric/Zookeeper; everything will be statically configured, no auto discovery.

Questions

We tried creating profiles using fabric:mq-create, but the command is not available unless a fabric is first created, which defeats the purpose.

Upvotes: 0

Views: 1075

Answers (1)

Claus Ibsen
Claus Ibsen

Reputation: 55525

No fabric profiles requires using fabric. You can use git to store files, but you cannot have JBoss Fuse automatic use it such as it does with fabric. You would need to use git manually.

The AMQ broker in JBoss Fuse is just standard Apache ActiveMQ so you can configure it manually/static as a network of brokers. It just not very easy to do if you haven't done that before.

See the JBoss A-MQ documentation as that covers the broker: http://www.jboss.org/products/amq/overview/

for example at: https://access.redhat.com/documentation/en-US/Red_Hat_JBoss_A-MQ/6.2/html/Using_Networks_of_Brokers/index.html

Upvotes: 2

Related Questions