Skip to content

Instantly share code, notes, and snippets.

@franciscotis
Created August 15, 2019 18:17
Show Gist options
  • Save franciscotis/32f2c57109d9a0f17b84fd5e03020132 to your computer and use it in GitHub Desktop.
Save franciscotis/32f2c57109d9a0f17b84fd5e03020132 to your computer and use it in GitHub Desktop.
Kernel
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
protected $queues = [
'notifications',
'default',
];
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
//
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
// run the queue worker "without overlapping"
// this will only start a new worker if the previous one has died
$schedule->command($this->getQueueCommand())
->everyMinute()
->withoutOverlapping();
// restart the queue worker periodically to prevent memory issues
$schedule->command('queue:restart')
->hourly();
}
protected function getQueueCommand()
{
// build the queue command
$params = implode(' ',[
'--daemon',
'--tries=3',
'--sleep=3',
'--queue='.implode(',',$this->queues),
]);
return sprintf('queue:work %s', $params);
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment