We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug When you have a lot of Users, the Mass-PM feature requires a very high memory limit and times out.
To Reproduce Steps to reproduce the behavior:
Expected behavior The messages should be send.
UNIT3D (please complete the following information):
Desktop (please complete the following information):
Additional context
Possible Fix? The Messages should be send in the Background in batches and not as a single Call.
The text was updated successfully, but these errors were encountered:
@fionera im not able to replicate this. The mass pm function already loops through all users and dispatches a queued job.
foreach ($users as $user) { $this->dispatch(new ProcessMassPM(self::SENDER_ID, $user->id, $subject, $message)); }
It wouldn't send all 8000 at once unless using the sync queue driver. What do you suggest?
sync
Sorry, something went wrong.
@fionera be sure to test the latest PR. #1451
I am seeing no memory/timeout issues sending a mass pm to 18,500 users.
HDVinnie
Successfully merging a pull request may close this issue.
Describe the bug
When you have a lot of Users, the Mass-PM feature requires a very high memory limit and times out.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The messages should be send.
UNIT3D (please complete the following information):
Desktop (please complete the following information):
Additional context
Possible Fix?
The Messages should be send in the Background in batches and not as a single Call.
The text was updated successfully, but these errors were encountered: