-
Notifications
You must be signed in to change notification settings - Fork 439
Remove message after n retry attempts #940
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Hi there, pushing this issue again, because: I am using enqueue-redis and have a very simple Processor. How do I get enqueue to redeliver a Message for a later date, i.e., Message comes to processor, something temporarily did not work, let's process this message later.
thaks in advance |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Something like a attempt counter is needed. Any solution? |
I found a solution in the php-enqueue/laravel-queue package. Uses the property field for attempts. Thank to all contributors. |
Hey!
Is there any possibility to remove the message from the queue after n attempts failed to try to handle it?
For example, if 5 times the processor couldn't handle it must remove from queue.
Also, It is possible doesn't stop the consumer when an exception occurred? In this case, I want to try redeliver this message end try to handle it one more time? I know about REQUEUE options, put it push message to the new queue, but I want to push to the same queue. Is it possible?
The text was updated successfully, but these errors were encountered: