Re: Scaling and duplicate message detection

2019-01-18 Thread Justin Bertram
I don't believe the 5.x broker has duplicate detection functionality. Justin On Fri, Jan 18, 2019 at 3:00 PM funnysage wrote: > Hi Justin, > > Thanks for the reply. Yes I understand that detection is at broker level > and > that is how it should be. > Now what I have learnt is that we are not

Re: Scaling and duplicate message detection

2019-01-18 Thread funnysage
Hi Justin, Thanks for the reply. Yes I understand that detection is at broker level and that is how it should be. Now what I have learnt is that we are not using Artemis but ActiveMQ 5.18. So will this feature be there in 5.18 too? Or I have to some other approach. Thanks -- Sent from:

Re: Scaling and duplicate message detection

2019-01-18 Thread Justin Bertram
If you put a message into a queue (i.e. instead of the database) then the broker will make sure that only one consumer get it (assuming you're using anycast routing). This replaces the DB locking mechanism you want to avoid. The duplicate-detection functionality that you referenced is for the

Scaling and duplicate message detection

2019-01-11 Thread funnysage
Hi All, I am new to ActiveMQ. I have architectural question. I have a Spring boot service that I want to scale horizontally in AWS. This service goes to a partner API on a scheduled basis. So we have a scheduler set up in Spring boot application. The read from the partner API is based on number