-
Notifications
You must be signed in to change notification settings - Fork 11.1k
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
[9.x] Prevent redis crash when large number of jobs are scheduled for a specific time #43310
Merged
taylorotwell
merged 3 commits into
laravel:9.x
from
AbiriAmir:AbiriAmir-limit-redis-queue-migrate-items
Jul 29, 2022
Merged
[9.x] Prevent redis crash when large number of jobs are scheduled for a specific time #43310
taylorotwell
merged 3 commits into
laravel:9.x
from
AbiriAmir:AbiriAmir-limit-redis-queue-migrate-items
Jul 29, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… in redis queue in order to prevent redis crash when large number of jobs are scheduled for a specific time
… in redis queue in order to prevent redis crash when large number of jobs are scheduled for a specific time
Really needed this feature. |
Need much more explanation about how this works, what every change does, etc. |
Please mark as ready for review when that is provided. |
nunomaduro
changed the title
Prevent redis crash when large number of jobs are scheduled for a specific time
[9.x] Prevent redis crash when large number of jobs are scheduled for a specific time
Jul 26, 2022
Ken-vdE
pushed a commit
to Ken-vdE/framework
that referenced
this pull request
Aug 9, 2022
… a specific time (laravel#43310) * Added support for limitting the number of jobs to migrate in each job in redis queue in order to prevent redis crash when large number of jobs are scheduled for a specific time * Added support for limitting the number of jobs to migrate in each job in redis queue in order to prevent redis crash when large number of jobs are scheduled for a specific time * formatting Co-authored-by: amir <[email protected]> Co-authored-by: Taylor Otwell <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently, scheduling a large number of jobs for a specific time causes Redis to halt since migrate script is a heavy script.
In this pull request, support for limiting the number of migrated jobs from the delayed queue to the main queue is added.
Steps to reproduce the problem:
php artisan queue:work
When the time reaches, Redis will be busy moving these jobs for minutes.
By limiting the number of jobs to migrate, the problem would be easily fixed.
It is also fully backward compatible since the default value passed as the limit is -1 which means no limit.