ycl123 / queue
基于 Workerman4 的定时任务队列。
v1.0.1
2022-04-01 09:46 UTC
Requires
- php: >=7.2
- ext-json: *
- symfony/finder: ^5.2
- topthink/think-container: ^2.0
- topthink/think-orm: ^2.0
- workerman/workerman: ^4.0
This package is auto-updated.
Last update: 2024-11-29 06:29:08 UTC
README
参考
主要特性
- 支持cron定时执行
- 支持指定时间执行
composer 安装
composer require ycl123/queue
配置
cron规则
0 1 2 3 4 5 6
* * * * * ? *
- - - - - - -
| | | | | | |
| | | | | | +----- year (1970 - 2099) [, - * /] 低于7段表示不指定
| | | | | +----- day of week (0 - 6) (Sunday=0) [, - * / ? W (0-6)L (0-6)#(1-5)]
| | | | +----- month (1 - 12) [, - * /]
| | | +------- day of month (1 - 31) [, - * / ? L LW (1-31)W]
| | +--------- hour (0 - 23) [, - * /]
| +----------- minute (0 - 59) [, - * /]
+------------- second (0 - 59) [, - * /] 低于6段表示不指定
,: 表示列出枚举值
-: 表示范围
*: 表示匹配该域的任意值
/: 表示起始时间开始触发,然后每隔固定时间触发一次
?: 表示不指定,只能用在day of month和day of week两个域,并且必须也只能有一个为 ?
L: 表示某月的最后一天
W: 表示有效工作日(1-5)
LW: 表示某月的最后一个工作日
(0-6)L: 表示某月的最后一个星期几(0-6)
(1-31)W: 表示离指定日期(1-31)最近的一个工作日,若指定日期大于当月最大日期则不触发
(0-6)#(1-5): 表示某月的第几个(1-5)星期几(0-6)
表结构
CREATE TABLE `task_scheduler` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `scheduler_type` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '任务类型:1=cron,2=time', `scheduler_status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '任务状态:1=正常,2=禁用', `scheduler_rule` varchar(100) NOT NULL DEFAULT '' COMMENT '调度器规则', `task_topic` varchar(100) NOT NULL DEFAULT '' COMMENT '任务主题', `task_data` json DEFAULT NULL COMMENT '任务数据', `create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `update_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间', PRIMARY KEY (`id`), KEY `idx_search1` (`scheduler_status`, `scheduler_type`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COMMENT ='调度器'; CREATE TABLE `task_distributor` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `scheduler_id` int(11) NOT NULL DEFAULT '0' COMMENT '调度器id', `task_topic` varchar(100) NOT NULL DEFAULT '' COMMENT '任务主题', `task_data` json DEFAULT NULL COMMENT '任务数据', `task_count` int(7) unsigned NOT NULL DEFAULT '0' COMMENT '任务数量', `execute_status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '执行状态:1=待执行,2=执行中,3=执行成功,4=执行失败,5=已取消', `execute_result` text COMMENT '执行结果', `create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间', `start_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '开始时间', `end_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '结束时间', PRIMARY KEY (`id`), KEY `idx_search1` (`execute_status`), KEY `idx_search2` (`task_topic`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COMMENT ='分发器'; CREATE TABLE `task_queue` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `distributor_id` int(11) NOT NULL DEFAULT '0' COMMENT '分发器id', `task_topic` varchar(100) NOT NULL DEFAULT '' COMMENT '任务主题', `task_data` json DEFAULT NULL COMMENT '任务数据', `execute_status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '执行状态:1=待执行,2=执行中,3=执行成功,4=执行失败,5=已取消', `execute_result` text COMMENT '执行结果', `execute_count` int(5) unsigned NOT NULL DEFAULT '0' COMMENT '执行次数', `max_execute_count` int(5) unsigned NOT NULL DEFAULT '0' COMMENT '最大执行次数', `create_time` int(10) NOT NULL DEFAULT '0' COMMENT '创建时间', `start_time` int(10) NOT NULL DEFAULT '0' COMMENT '开始时间', `next_execute_time` int(10) NOT NULL DEFAULT '0' COMMENT '下次执行时间', `end_time` int(10) NOT NULL DEFAULT '0' COMMENT '结束时间', PRIMARY KEY (`id`), KEY `idx_search1` (`execute_status`, `task_topic`), KEY `idx_search2` (`distributor_id`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COMMENT ='队列'; CREATE TABLE `task_queue_log` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键', `queue_id` int(11) NOT NULL DEFAULT '0' COMMENT '队列id', `execute_status` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '执行状态:1=执行中,2=执行成功,3=执行失败,4=已取消', `execute_result` text COMMENT '执行结果', `start_time` int(10) NOT NULL DEFAULT '0' COMMENT '开始时间', `end_time` int(10) NOT NULL DEFAULT '0' COMMENT '结束时间', PRIMARY KEY (`id`), KEY `idx_search1` (`queue_id`), KEY `idx_search2` (`execute_status`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COMMENT ='队列日志';
使用
新建一个任务执行文件
TestTask.php
namespace ycl123\queue; class TestTask extends Task { public function run(array $taskData): Result { return Result::instanceSuccess(); } public static function getTaskTopic(): string { return 'TEST_TASK'; } }
在建建一个启动
test.php
use ycl123\queue\Start; // 具体配置项请查看 config.php $config = [ 'socket' => '127.0.0.1:9889', 'count' => 1, // 非tp项目,tp项目 'connection' => 'mysql', 'connection' => [ 'type' => 'mysql', 'hostname' => '127.0.0.1', 'database' => 'database', 'username' => 'username', 'password' => 'password', 'hostport' => '3306', 'charset' => 'utf8mb4', 'debug' => true, ], 'task_class' => [TestTask::class], ]; $start = new Start($config); $start->run();
在数据中中执行下面的sql
INSERT INTO `task_scheduler` (`scheduler_type`, `scheduler_status`, `scheduler_rule`, `task_topic`, `task_data`, `create_time`, `update_time`) VALUES (1, 1, '* * * * * ?', 'TEST_TASK', '[]', 1621597020, 1621597020);
启动,其他启动参数请参考workerman文档
php test.php start
最后在
task_queue
和task_queue_log
表中观察任务的执行情况