Git Product home page Git Product logo

Comments (6)

sonus21 avatar sonus21 commented on July 19, 2024

To Summarize, the dead messages are not reaching their listener method

This is little bit confusing to me, this is the expected behaviour not? When a message reaches it's retry limit than your listener method won't be called.

Let me know if I have misunderstood anything.

See this test
https://github.com/sonus21/rqueue/blob/master/rqueue-spring-boot-starter/src/test/java/com/github/sonus21/rqueue/spring/boot/tests/integration/ApplicationTest.java#L48

from rqueue.

karthikpadev avatar karthikpadev commented on July 19, 2024

Yes, the expected behavior is, once the retry limit is reached, the message to be discarded.
But when a dead letter queue is configured for this, the message should not be just discarded,
it should be moved to its dead letter queue.

Currently it is not happening.

@RqueueListener(value = "delay-queue", numRetries = "1", deadLetterQueue = "dead-queue", concurrency = "10-100")
public void delayMessage(Message message) {
log.info("Message received for delay :: {}", message);
}

@RqueueListener(value = "dead-queue", numRetries = "1", deadLetterQueue = "", concurrency = "5")
public void delayMessage(Message message) {
log.info("Dead Message from delay-queue :: {}", message);
}

After failure count = 1 in delay-queue listener
Message should be enqueued in dead-queue

But its is just discarded, not moved to dead-queue

Please test and confirm

from rqueue.

sonus21 avatar sonus21 commented on July 19, 2024

Hmm, this is not supported. Messages are moved to dead letter queue but they can not be consumed using other listener.

from rqueue.

karthikpadev avatar karthikpadev commented on July 19, 2024

Thanks

For now, is there a way to process dead messages.
e.g : Sending a mail saying "A message died in delay-queue"

from rqueue.

sonus21 avatar sonus21 commented on July 19, 2024

yes, that can be done. you can register dead letter callback handler that can do whatever you want,
See wiki
https://github.com/sonus21/rqueue/wiki/Callback-Events

For your case, I think it would be more appropriate to use Discard Execution processor, as this can trigger email as well as re-enqueue. You can find the queue name from the RqueueMessage object.

https://github.com/sonus21/rqueue/wiki/Callback-Events#discard-execution-processor

from rqueue.

sonus21 avatar sonus21 commented on July 19, 2024

HI Karthik,
If you're still looking for this feature than you can use the latest release 2.0.4-RELEASE.

https://github.com/sonus21/rqueue/wiki/Producer-Consumer#dead-letter-queue-consumerlistener

Open this bug if you need any more details.

from rqueue.

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.