toflar / cronjob-supervisor
A simple supervisor for processes that can be triggered using a minutely cronjob
Fund package maintenance!
Toflar
Installs: 99 331
Dependents: 2
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: ^8.1
- symfony/filesystem: ^6.0 || ^7.0
- symfony/lock: ^6.0 || ^7.0
- symfony/process: ^6.0 || ^7.0
Requires (Dev)
- phpunit/phpunit: ^10.2
- terminal42/contao-build-tools: @dev
README
Need to have a number of workers on some server but have no access to any daemon like supervisord
or the likes but
can configure a minutely cronjob? This library might come in handy for you then.
- Installation
composer require toflar/cronjob-supervisor
- Create your
runner.php
:
<?php require_once 'vendor/autoload.php'; use Symfony\Component\Process\Process; use Toflar\CronjobSupervisor\BasicCommand; use Toflar\CronjobSupervisor\Supervisor; $supervisor = Supervisor::withDefaultProviders('/some/directory/you/want/to/store/your/state'); $supervisor ->withCommand(new BasicCommand('sleep 10', 2, function () { return new Process(['sleep', '10']); })) ->withCommand(new BasicCommand('sleep 29', 4, function () { return new Process(['sleep', '29']); })) ->supervise() ;
- Configure the minutely cronjob
* * * * * /path/to/your/php/binary/php runner.php
That's it. The Supervisor
will take care that even if your jobs are still running after a minute has passed, only
ever your maximum number of processes will be created.
For this to work, it uses multiple providers to check if processes are still running. Currently supported are:
posix_getpgid()
ps -p <pid>
tasklist /FI PID eq <pid>
Which means you should be able to run it on most Linux and Windows combinations.