Advance Laravel: Dispatch Jobs from Cron Jobs in Laravel (Part 1)

Adnan Mumtaz Mayo
2 min readJun 24, 2020

--

Photo by Safar Safarov on Unsplash

This is a common pattern that can be used to avoid long-running cron jobs and process the tasks faster with less memory and better control over the processes.

Let’s assume you have to send the newsletter to more than 500 users every day/month.

I am assuming you already have a basic knowledge of Laravel and PHP

Lets create a new Project.

composer create-project larave/laravel

After creating a project lets create a separate command call it NewsLetterCommand

Run this command in the root directory of your newly created project.

php artisan make:command NewsLetterCommand

Newly file will be created by the laravel to do the heavy stuff.

Let’s assume we have 500 users in our database and sending an email will take almost 1–2 sec per user depending on the service you are using. Sending an email to 500 users will take approximate 8 minutes.

Now you got the picture in the whole process our script and processor will be busy for the next 8 to 10 minutes.

Now you got the big picture, assume you are encoding a video or running some CPU intensive process which takes around 5–10 minutes each.

How to avoid this common pitfall.

Here comes Laravel Jobs to rescue. Rather than doing all the stuff in a single process divide it into multiple sub-process.

Let’s create a Laravel Job.

php artisan make:job SendNewsLetterJob`

Laravel will create a SendNewsLetterJob stub for us.

Now we have everything set up let’s dispatch the job from the cron job. From the “NewsLetterCommand” lets dispatch the job.

This approach is easier to debug and trace errors.
It will save us some time, even we can concurrently send multiple processes. It is also easier to test.

In the next part of this tutorial, we will refactor the code and will apply some job-throttling.

--

--

Adnan Mumtaz Mayo
Adnan Mumtaz Mayo

Written by Adnan Mumtaz Mayo

CTO https://codeupscale.com, Helping startups to build optimised solutions.

No responses yet