skip to Main Content

I was reading through the Microsoft Azure Event Hub documentation , but couldn’t find mention of dead-letter-topic and/or dead-letter-queue . I know that Kafka has support for dead-letter-topic and dead-letter-queue

My question is , does Microsoft Azure Event Hub have support for dead-letter-topic and dead-letter-queue ?

2

Answers


  1. There’s no such a thing for Azure Event Hub. For "dead-lettering" you need to use Azure Service Bus.

    I would also advise you to check/compare Azure messaging services below:

    https://learn.microsoft.com/en-us/azure/event-grid/compare-messaging-services

    Login or Signup to reply.
  2. Redpanda is Kafka-API compatible streaming data platform. You can implement dead-letter-topics with Redpanda for message reprocessing.

    The following blog explains the use of dead-letter topics and asynchronous retries for reliable message processing with Kafka/Redpanda.

    https://redpanda.com/blog/reliable-message-processing-with-dead-letter-queue

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search