You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now, when I send produce an event with value equals to error1 or error2 I get 1 message in email, 1 in email-retry and 1 in email-dlt as expected. But when I produce a event with value error then I get 1 message in email, 2 in email-retry (so far expected) but 4 messages in email-dlt.
Shouldn't the email-dlt topic also have 2 messages?
I think I should add some more information about the configuration too.
The kafka cluster is running in docker with the following compose
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am new to Apache kafka and trying to understand how the non blocking retry works.
I have two consumer in different groups. I tried to simulate errors manually
Now, when I send produce an event with value equals to
error1
orerror2
I get 1 message inemail
, 1 inemail-retry
and 1 inemail-dlt
as expected. But when I produce a event with valueerror
then I get 1 message inemail
, 2 inemail-retry
(so far expected) but 4 messages inemail-dlt
.Shouldn't the
email-dlt
topic also have 2 messages?I think I should add some more information about the configuration too.
The kafka cluster is running in docker with the following compose
The producer configs are
And the consumer config are
The topics (email, email-retry, email-dlt) are generated automatically. The partition count and replication factor of all the topics are 1.
Beta Was this translation helpful? Give feedback.
All reactions