networking - activemq network broker different version -
i have activemq network of broker using activemq 5.4.0. have central server broker , consumer , many client local broker , producer. need upgrade activemq version 5.8.0. upgrading server, in local broker continue see central consumer, messages remain in local broker.
for netowork of broker, it's mandatory have same version of activemq?
thanks
i solved in way:
1) change configuration in network connector broker client 5.4.0 from
<networkconnectors> <networkconnector uri="static://(tcp://serverurl:61616)" name="bridge" duplex="true" conduitsubscriptions="true" decreasenetworkconsumerpriority="false"> </networkconnector> </networkconnectors>
to
<networkconnectors> <networkconnector uri="static://(tcp://serverurl:61616)" name="bridge" duplex="true" conduitsubscriptions="true" decreasenetworkconsumerpriority="false"> <dynamicallyincludeddestinations> <queue physicalname=">" /> </dynamicallyincludeddestinations> </networkconnector> </networkconnectors>
2) upgrade server broker 5.4.0 5.8.0 3) works, synchronous messages 4) upgrade each broker client 5.8.0 , test every message
Comments
Post a Comment