Git Product home page Git Product logo

Comments (4)

noxdafox avatar noxdafox commented on July 19, 2024 3

Exchange-level deduplication allow you to deduplicate based on time.
Queue-level deduplication allow you to deduplicate based on queue content. Deduplication TTL does not apply on dedup queues.

You can combine both to achieve what you are looking for. A dedup exchange will ensure duplicate messages publish within the broker will not be routed for a given amount of time. A dedup queue will prevent two equal messages to be in the same queue at the same time.

You need to consider corner cases though. For example, if your queue has plenty of elements and two equal messages come within 30 minutes from each other. Are they considered duplicates? The dedup exchange will actually route them forward as the 10 minutes TTL has already expired but the dedup queue will reject the second message as there is already one in the queue.

from rabbitmq-message-deduplication.

noxdafox avatar noxdafox commented on July 19, 2024 1

Hello,

the use case you describe is the one fulfilled by the queue level deduplication. A message is considered belonging to the queue up until it is not acknowledged by a consumer. Hence, if a duplicate message would arrive, it would be discarded as the consumption of the first one is still in progress.

from rabbitmq-message-deduplication.

citosid avatar citosid commented on July 19, 2024

Thanks for your quick reply @noxdafox . We just have a quick question:

If a message is sent with a TTL of 10 minutes. Worker A receives it and after 1 minute it acknowledge it. After 1 minute, the same messages comes to the queue. Will it still be deduplicated it based on TTL or it will be forward it because the previous one was acknowledge?

from rabbitmq-message-deduplication.

citosid avatar citosid commented on July 19, 2024

Thank you so much for your help!

We will change our code to acknowledge the messages and then that should be enough for us.

from rabbitmq-message-deduplication.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.