I am new to Confluent cloud. I have a scenario where we send huge load of messages from Boomi platform to Kafka using Boomi's Kafka connector. I want to know if dead letter queues can be automatically created in case of failure during message transaction from Boomi to Kafka.
I see using HTTP sink connector, I could achieve automatic DLT creation on failure. But topic accepts all error and success message. So dead letter mechanism is only applicable to consumers and not producers?.
Thanks for your reply.
Kafka itself does not natively support dead letter queues (DLQs) for producers. Dead letter queues are typically associated with consumer-side processing, allowing failed messages to be redirected for further analysis or handling.
You have specifically add logic to move the failed msg to a different topic and process them accordingly