I have configuration, which uses an explicit reply-destination
<jms:outbound-gateway request-destination="reconcileQueue"
reply-destination="reconcileQueueReplies"
request-channel="reconcileInputChannel"
connection-factory="cachedConnectionFactory"
receive-timeout="30000"
/>
The use case is Service A makes a reconcillation request to service B, with the queues defined explicity to make monitoring easier.
When the system is initliased I observe that there is one consumer on the reconcileQ, and none on the replyQueue. All good, this is what I would expect.
As requests are made, I notice that the consumer count of the reply queue continues to grow (the requests do not).
Is there any reason why this is the case? I am a little concerned that I am going to run out of consumers.
For reference, this is using spring integration M5 and Hornetq 2.1.0 Final.


Reply With Quote
