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
Currently for all Async Reactors/Projectors are processed by a single job HandleStoredEventJob.
That means one projector/reactor's failure will make the rest fail too. I am aware that we can catch all exceptions by the catch_exceptions key. However that will make the laravel queue retry mechanism useless.
I propose to use fire different job for each projector/reactor's, so they can handle their own fail/success.
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
-
Currently for all Async Reactors/Projectors are processed by a single job
HandleStoredEventJob
.That means one projector/reactor's failure will make the rest fail too. I am aware that we can catch all exceptions by the
catch_exceptions
key. However that will make the laravel queue retry mechanism useless.I propose to use fire different job for each projector/reactor's, so they can handle their own fail/success.
Beta Was this translation helpful? Give feedback.
All reactions