You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@activemq.apache.org by to...@arcor.de on 2014/06/27 07:14:51 UTC

Understanding composite queues (forwardOnly)

Hi there,

what is the there a difference (is there any?) between

          <compositeQueue name="A">
            <forwardTo>
              <queue physicalName="B1" />
              <queue physicalName="B2" />
            </forwardTo>
          </compositeQueue>

and

          <compositeQueue name="B1" forwardOnly="false">
            <forwardTo>
              <queue physicalName="B2" />
            </forwardTo>
          </compositeQueue>

I'm asking because I see unexpected behaviour when moving messages manually between those queues or from dlq back in that queues with the latter setting.

Thanks for clarification.