glooby/task-bundle
Composer 安装命令:
composer require glooby/task-bundle
包简介
Scheduling of tasks for symfony made simple
README 文档
README
Provides a simple framework to manage scheduling and execution of tasks Symfony application.
Prerequisite
This bundle requires cron to be installed on the server to be able to execute scheduled tasks
Installation
Add the glooby/task-bundle package to your require section in the composer.json file.
$ composer require glooby/task-bundle ~3.0
Add the GloobyTaskBundle to your application's kernel:
<?php public function registerBundles() { $bundles = [ // ... new Glooby\TaskBundle\GloobyTaskBundle(), // ... ]; ... }
Create this file /etc/cron.d/glooby_scheduler_run
* * * * * nginx cd /path/to/project && php bin/console scheduler:run --env=prod &> /dev/null 2>&1
Documentation
Create a executable Task
To setup a new runnable task you should follow these steps
Implement the TaskInterface
example: src/Glooby/Api/TaskBundle/Task/PingTask.php
class PingTask implements TaskInterface { /** * @inheritdoc */ public function run(array $params = []) { return 'pong'; } }
Add a service for your task
services: glooby_task.ping: class: Glooby\TaskBundle\Task\PingTask
Try and run the task trough cli
$ bin/console task:run glooby_task.ping
"pong"
Setup Scheduled task
To setup a new schedule you should follow the steps below
Make your service runnable
Follow the steps in [Create a executable Task](#Create a executable Task)
Tag your service
By tagging your service with the glooby.scheduled_task tag it will be treated as a scheduled task
example:
src/Glooby/Api/TaskBundle/Resources/config/services.yml
services: glooby_task.ping: class: Glooby\TaskBundle\Task\PingTask tags: - { name: glooby.scheduled_task }
Annotate your class
Annotate your class with this annotation: Glooby\TaskBundle\Annotation\Schedule
Parameters
interval
The first parameter to the annotation is defaulted to the interval parameter. In this parameter you configure the interval that the service should be executed.
The interval is a string of five or optional six subexpressions that describe details of the schedule. The syntax is based on the Linux cron daemon definition.
* * * * * *
- - - - - -
| | | | | |
| | | | | + year [optional]
| | | | +----- day of week (0 - 7) (Sunday=0 or 7)
| | | +---------- month (1 - 12)
| | +--------------- day of month (1 - 31)
| +-------------------- hour (0 - 23)
+------------------------- min (0 - 59)
This is the only required parameter
use Glooby\TaskBundle\Annotation\Schedule; /** * @Schedule("* * * * *") */ class PingTask implements TaskInterface {
Here you have several shortcuts that you can use instead for most common use cases
| value | interval |
|---|---|
| @yearly | 0 0 1 1 * |
| @annually | 0 0 1 1 * |
| @monthly | 0 0 1 * * |
| @weekly | 0 0 * * 0 |
| @daily | 0 0 * * * |
| @hourly | 0 * * * * |
| @semi_hourly | */30 * * * * |
| @quarter_hourly | */15 * * * * |
| * | * * * * * |
use Glooby\TaskBundle\Annotation\Schedule; /** * @Schedule("@hourly") */ class PingTask implements TaskInterface {
params
The params that should be used when calling
use Glooby\TaskBundle\Annotation\Schedule; /** * @Schedule("@weekly", params={"wash": true, "flush": 500}) */ class CityImporter implements TaskInterface {
active
Phe active parameter tells if the schedule should be active or not, default=true
use Glooby\TaskBundle\Annotation\Schedule; /** * @Schedule("*/6", active=false) */ class PingTask implements TaskInterface {
Sync schedules to the database, this has to be run after each update
bin/console scheduler:run
Running the Tests
Install the dependencies:
$ script/bootstrap
Then, run the test suite:
$ script/test
Contributing
See CONTRIBUTING file.
License
This bundle is released under the MIT license. See the complete license in the bundle: LICENSE.md
glooby/task-bundle 适用场景与选型建议
glooby/task-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16.42k 次下载、GitHub Stars 达 32, 最近一次更新时间为 2016 年 10 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「bundle」 「cron」 「task」 「scheduler」 「glooby」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 glooby/task-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 glooby/task-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 glooby/task-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Symfony bundle to monitor and execute commands
2lenet/EasyAdminPlusBundle
The bundle for easy using json-rpc api on your project
Provide a way to secure accesses to all routes of an symfony application.
DMS Meetup API Bundle, enables Meetup API clients in services
Scheduling extension for Yii2 framework
统计信息
- 总下载量: 16.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 32
- 点击次数: 24
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-10-04