Explanation of the built-in Kafka Retry Policy #400
-
Hello, I'm new to Kafka integration and I'm tasked to read/write to a Kafka topic using Azure Functions. My concern is the retry policy for both consumer and producer... can anyone explain the internal mechanisms how these policies work? If a certain message consumed/produced reached max retries, where does it go? Would a topic named "my-topic-dead-letter" appear and I can have a custom processor read or use that to send notifications or do I have any options in-code to check if a message is at max retry and handle accordingly? TIA |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @donntorres35,
Customers are recommended to add the dead letter topic in their respective Kafka broker and use the output binding to write in dead letter topic and replay those events based on business use-case. |
Beta Was this translation helpful? Give feedback.
Hi @donntorres35,
To answer your question :-
Customers are recommende…