Coder Social home page Coder Social logo

Dead-Letter Queues about pulsar HOT 7 CLOSED

apache avatar apache commented on July 19, 2024 1
Dead-Letter Queues

from pulsar.

Comments (7)

merlimat avatar merlimat commented on July 19, 2024 3

The primary concern I have with dead-letter queue is how to avoid that some misconfiguration can lead to send everything into that topic.

In some cases the application can have a pretty good idea that a message is bad/corrupted and thus triggering the rerouting of the message, but if for example a new field is introduced and the consumer is not updated, it might start sending everything to DLQ.

About doing the work in client vs server. I don't think there is a big functional difference. The 2 operations cannot be atomically executed anyway, we have to first publish and then skip the bad message.

My preference would go to doing that in client lib, to avoid scalability concern in broker.

Adding on what proposed by @agarman, what about configuring the DLQ on consumer config?

consumerConf.setDeadLetterQueue("persistent://.....");
consumerConf.sendToDeadLetterQueueAfterRetries(10);

Then in consumer code:

while (true) {
    Message msg = consumer.receive();
    try {
        // processMessage()
    } catch (Exception e) {
       consumer.reject(msg);
       continue;
    }

   consumer.acknowledge(msg);
}

The difficult part would be how to support transient vs persistent errors and rejections.

from pulsar.

agarman avatar agarman commented on July 19, 2024

I am writing rejected messages to "TopicName{{RejectedMessage}}" then acknowledging the message. It'd be nice to have the broker handle this atomically.

An API like:

reject(msgId); // sends message into dead letter box for subscription; acknowledged in process
reroute(msgId, specificTopic); // same but into a specific topic

from pulsar.

sijie avatar sijie commented on July 19, 2024

PIP-22 is the proposal for implementing dead letter queue.

from pulsar.

sijie avatar sijie commented on July 19, 2024

@codelipenghui @jiazhai : you guys can probably use this issue as the main issue for dead letter topic implementation.

from pulsar.

sijie avatar sijie commented on July 19, 2024

#2400 is implementing dead letter topic.

from pulsar.

ivankelly avatar ivankelly commented on July 19, 2024

Closing as a dupe of #2400

from pulsar.

fracasula avatar fracasula commented on July 19, 2024

Hey guys, are there any plans to add DLQ support in the Golang CGo based library? I see that it's supported in the pure Golang one which we are not using though due to your disclaimer saying that feature parity and stability has not been reached.

from pulsar.

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.