Hi @michael_w ,
Apologies for distrubing you again.
Just need one clarification, Suppose one message went into the ‘$dead’ topic after that will this go into the ‘$expired’ once the message got expired ?
Thanks !
Hi @michael_w ,
Apologies for distrubing you again.
Just need one clarification, Suppose one message went into the ‘$dead’ topic after that will this go into the ‘$expired’ once the message got expired ?
Thanks !
Hi @Rahul,
yes it is possible. But we prevent circular sending of messages, so $dead → $expired is possible but $dead → $expired → $dead is prevented.
Greetings,
Michael
Hi @michael_w ,
Got it.
I have more scenario which is as follow
Working like : Message → $dropped/ → Subscriber ( it has default queue = 1000) → after some point again messages are getting dropped → $dropped/
It is becoming cyclic process. How we should handled this one ?
Could you have look on it ?
Thanks !
Hi @Rahul,
Message → $dropped/ → Subscriber ( it has default queue = 1000) → after some point again messages are getting dropped → $dropped/
in this case if they are dropped when queued for $dropped/ they are simply gone. This is because we prevent the cyclic behaviour internally.
How we should handled this one ?
I personally would prefer shared subscriptions or a consumer to be used to process messages for $topics.
Greetings,
Michael
Hi @michael_w ,
Thanks a lot for sharing this info.