The first, thank you for the answer. 

James.Strachan wrote:
> 
> On 15 June 2010 07:54, astlm <monica.astudi...@tic.alten.es> wrote:
>>
>> I'm sorry but I did not understand how Resequencer work on, I have read
>> in
>> more detail how it works, and although not ideal, because only order a
>> number of messages or messages received over a period time, It can be a
>> solution.
> 
> Thats how priority queues work too. How else can you know how long or
> how many messages to reorder?
> 
> You are right. 
> I was thought that every message recived to be placed in the correct
> position according to their priority, instead of waiting for a number of
> messages or to place, but I guess is that this is very hard and slow.
> 
>> I think I have to define two queues, one for input and another oner for
>> output.
> 
> Correct. It also lets you sort on much more fine grained things -
> including expressions which extract values from your message payload
> too if JMSPriority is not enough.
> 
> 
>> Is only necesary to define on broker.xml the Resequencer?
>>
>> <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring";>
>>  <route>
>>    <from uri="input" />
>>    <resequence>
>>      <simple>body</simple>
>>      <to uri="output" />
>>      <batch-config batchSize="300" batchTimeout="4000"
>> allowDuplicates=true reverse=true />
>>    </resequence>
>>  </route>
>> </camelContext>
>>
>> With these configuration, The producer connect with input queue and the
>> consumer with output queue.
> 
> You can put the above XML into any spring XML in any JVM really;
> though feel free to use it in the broker's XML file.
> 
> I use activemq 5.3.2 with camel 2.2.0, according to specification,
> allowDuplicates and reverse are available from the camel 2.4. 
> http://camel.apache.org/resequencer.html
> Any activemq version have camel 2.4?
> 
> I tried download camel 2.4, but It´s not avalilable. 
> http://camel.apache.org/download.html
> 
> I have a resequencer by JMSPriority, but It doesn`t get reverse orden and
> It doesn´t allow duplicates.
> 
> Thank you, very much.
> 
> -- 
> James
> -------
> http://macstrac.blogspot.com/
> 
> Open Source Integration
> http://fusesource.com/
> 
> 

-- 
View this message in context: 
http://old.nabble.com/Priority-message-tp28878604p28890400.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Reply via email to