Retrying Failed Messages In A Symfony Application

İbrahim Gündüz
3 min readMay 2, 2020

Sometimes, a message consumer might be failed because of connection issues or other logical reasons. In this case, the application should handle the fail scenario properly and retry the failed message several times based on some rules.

Today, we are gonna see how to retry a failed message in a Symfony application through Messenger Component by referencing the previous post:

--

--