Package Data | |
---|---|
Maintainer Username: | philipwhitt |
Maintainer Contact: | philipwhitt88@gmail.com (Philip Whitt) |
Package Create Date: | 2019-10-29 |
Package Last Update: | 2023-07-18 |
Language: | PHP |
License: | GPL-3.0+ |
Last Refreshed: | 2025-02-06 15:03:51 |
Package Statistics | |
---|---|
Total Downloads: | 616 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Process control for running artisan commands as a deamon. Respects all sigterm commands sent. Includes TTL driver and RunOnce drivers. This should work for Laravel too, but its only been tested with lumen.
When running artisan commands as a background deamon process, the ProcessControl will ensure that SIGTERMs are respected. This is especially important when running artisan commands as the docker entrypoint. It will respect docker's kill signal and give you a chance to finish work before exiting.
With composer:
composer require resgen/lumen-proc:1.0.*
Ensure pcntl_async_signals is enabled for your php install. Example docker alpine RUN:
RUN docker-php-ext-install pcntl
Add the laravel service provider Resgen\Common\Proc\ProcessControlProvider
to your app.
Then add the following ENV var with the selected driver:
LUMEN_PROC_DRIVER=runonce
ENV name: ttl
.
Runs for N number of seconds. Defaults to 300s runtime. Logs a heart beat message every ~6 seconds. You can adjust the runtime by setting the LUMEN_PROC_TTL=1000s
. Will exit if a SIGTERM is sent. Intended to be used with a process supervisor like runit, supervisord or inside a docker orchestration env like kubernetes.
ENV name: keepalive
.
Runs until a SIGTERM signal is sent. Not recommended for production usage. Processes should cycle.
ENV name: runonce
.
Will escape immediately when check()
is called.
use Illuminate\Console\Command;
use Resgen\Common\Proc\ProcessControl;
use Resgen\Common\Proc\EscapeProcessException;
class ExampleCommand extends Command
{
protected $name = 'example';
protected $signature = 'example:run';
// will run until ProcessControl escapes
public function handle(ProcessControl $proc)
{
try {
do {
// do some work; consume a queue, check a FS, ect...
sleep(1);
$proc->check();
} while(true);
} catch (EscapeProcessException $e) {}
// finish work then exit
}
}