blackbird / clean-blocked-running-cron
Installs: 3 820
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
- php: >=7.1
- magento/framework: >=100.0.0
- magento/module-catalog: >=100.0.0
Requires (Dev)
- roave/security-advisories: dev-master
This package is auto-updated.
Last update: 2024-10-29 06:12:30 UTC
README
This module add a CLI command which allows you to end a CRON job that is running for a defined time. The free source is available at the GitHub repository.
Requirements
- PHP >= 7.1
- Magento >= 2.2
Setup
Get the package
Zip Package:
Unzip the package in app/code/Blackbird/CleanBlockedRunningCron, from the root of your Magento instance.
Composer Package:
composer require blackbird/clean-blocked-running-cron
Install the module
Go to your Magento root, then run the following Magento command:
php bin/magento setup:upgrade
If you are in production mode, do not forget to recompile and redeploy the static resources, or to use the --keep-generated
option.
Command
This extension gives you a new CLI command for your Magento :
php <magento-root-dir>/bin/magento cron:blocked:clean -H <hours> -M <minutes> -c <job code(s)>
Parameters
-H
or--hours
and-M
or--minutes
allows you to define how long after execution the jobs are considered blocked.-c
or--cron
allows you to define which cron jobs need to be killed after H hours and M minutes execution. It's possible to define multiple jobs separated by a comma.
The idea is to use this command in your crontab for each job which sometime blocked.
Be carefully to define the appropriate hours and minutes for the defined cron job codes to not kill real running jobs.
Support
- If you have any issue with this code, feel free to open an issue.
- If you want to contribute to this project, feel free to create a pull request.
Contact
For further information, contact us:
- by email: hello@bird.eu
- or by form: https://black.bird.eu/en/contacts/
Authors
- Thibaud Ritzenthaler - Maintainer -
- Blackbird Team - Contributor -
License
This project is licensed under the MIT License - see the LICENSE file for details.
That's all folks!