I have setup network of brokers exactly as per this post of Bruce Snyder:

Broker 1:

<networkConnector name="amq1-nc"
uri="static:(tcp://localhost:61617)"
userName="system"
password="manager"
/>

Broker 2:

<networkConnector name="amq2-nc"
uri="static:(tcp://localhost:61616)"
userName="system"
password="manager"
/>

I have advisorySupport="false" in the broker tag of both the broker's config xml and started both the brokers.

Then I started the consumer using command:

ant consumer -Durl=tcp://0.0.0.0:61616

and finally started producer using this command:

ant producer -Durl=tcp://0.0.0.0:61617

All the produced messaged then go in pending state on the broker running on port 61617 and consumer connected on port 61616 broker never get the messages.

Does the network of broker stop forwarding messages without advisorySupport enabled? I thought that was fixed in recent release. (I'm using activemq 5.4.2 release).

Does activemq static network of broker stop forwarding messages advisorySupport is disabled?

Update: I ran into issues using advisorySupport="false" and staticallyIncludedDestinations.

We use JMS for mostly request-response like described here: http://activemq.apache.org/how-should-i-implement-request-response-with-jms.html

We are using temporary queue on Producer side to be able to receive response from Consumers and since staticallyIncludedDestinations cannot include these temporary queue names in it therefore all the Producers are unable to receive responses back from clients when advisorySupport is disabled.

I am coming to conclusion that for our scenario advisorySupport cannot be turned off unless there is some other config trick I'm not aware of.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The documentation sais:

"Warning: Advisory messages are required for dynamic network broker topologies as NetworkConnectors subscribe to advisory messages. In the absence of advisories, a network must be statically configured.

The Advisory messages tell a node where remote consumers are and therefore where to send incoming messages. WITHOUT them, you have to configure that stuff yourself.

The documentation has an example how to do that: http://activemq.apache.org/networks-of-brokers.html

link|improve this answer
@Laures: I have read that document many times and now very well that dynamic network brokers do need advisorySupport enabled. But if you read my question and title of this page again it says clearly that it is not working for "static network of broker". – anubhava Mar 18 '11 at 16:31
static doesn't end with broker discovery. The advisory messages tell a node where a consumer for queue A is. without them your config has to tell the node where to send any incoming messages for A. your config examples don't contain that information. In your case the staticallyIncludedDestinations element should do the trick. – Laures Mar 21 '11 at 8:37
Thank you very much Laures. Gary Tully also responded to my post on activemq mailing list today with same answer that broker config needs to have: <staticallyIncludedDestinations> <queue physicalName="TEST.FOO"/> </staticallyIncludedDestinations> inside networkConnector tag. – anubhava Mar 21 '11 at 17:12
I found another issue with turning off advisorySupport, please see my update above. – anubhava Mar 22 '11 at 2:30
new trick: i will assume that all dynamic queues are named dynamic.<something>. Then <dynamicallyIncludedDestinations><queue physicalName="dynamic.>"/>... (thanks to the activemq wildcard mechanism) should forward all messages from queues that start with dynamic. through the networkConnector. – Laures Mar 22 '11 at 10:01
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.