V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
Littlesqx
V2EX  ›  PHP

Yet-another swoole 异步队列,支持弹性扩容,工作进程协程支持

  •  
  •   Littlesqx · 2020-03-12 15:37:14 +08:00 · 2252 次点击
    这是一个创建于 1505 天前的主题,其中的信息可能已经有所发展或是发生改变。

    前言

    项目 在这里,欢迎 star 鸭!写这个库的原因主要是当时在学 Swoole,然后发现 Swoole 社区中没有一个写得比较好又是专门针对异步任务的库,所以就一边学一边写了。去年年中开始写的,参考了各个类似项目,并且在实际业务应用中发现了问题,一路上改进了不少,目前在公司已经有应用在邮件投递服务(实际上还在测试阶段中:joy:)。大家有什么意见或建议可以提出来,我会好好改进。

    Aint Queue

    基于 Swoole 的一个异步队列库,可弹性伸缩的工作进程池,工作进程协程支持。

    特性

    • 默认 Redis 驱动
    • 秒级延时任务
    • 自定义重试次数和时间
    • 自定义错误回调
    • 支持任务执行中间件
    • 自定义队列快照事件
    • 弹性多进程消费
    • 工作进程协程支持

    环境

    • PHP 7.2+
    • Swoole 4.4+
    • Redis 3.2+ (redis 驱动)

    安装

    $ composer require littlesqx/aint-queue -vvv
    

    使用

    配置

    默认读取配置路径: config/aint-queue.php, 不存在时读取 /vendor/littlesqx/aint-queue/src/Config/config.php

    <?php
    
    use Littlesqx\AintQueue\Driver\Redis\Queue as RedisQueue;
    use Littlesqx\AintQueue\Logger\DefaultLogger;
    
    return [
        // channel_name => [...config]
        'default' => [
            'driver' => [
                'class' => RedisQueue::class,
                'connection' => [
                    'host' => '127.0.0.1',
                    'port' => 6379,
                    'database' => '0',
                    // 'password' => 'password',
                ],
                'pool_size' => 8,
                'pool_wait_timeout' => 1,
                'handle_timeout' => 60 * 30,
            ],
            'logger' => [
                'class' => DefaultLogger::class,
                    'options' => [
                        'level' => \Monolog\Logger::DEBUG,
                    ],
                ],
            'pid_path' => '/var/run/aint-queue',
            'consumer' => [
                'sleep_seconds' => 1,
                'memory_limit' => 96,
                'dynamic_mode' => true,
                'capacity' => 6,
                'flex_interval' => 5 * 60,
                'min_worker_number' => 5,
                'max_worker_number' => 30,
                'max_handle_number' => 0,
            ],
            'job_snapshot' => [
                'interval' => 5 * 60,
                'handler' => [],
            ],
        ],
    ];
    
    

    所有参数:

    | name | type | comment | default | | :---- | :---- | :---- | :---- | | channel | string | 频道。队列的单位,每个频道内的消息对应着各自的消费者和生产者。支持多频道。在命令行使用 --channel 参数。 | default | | driver.class | string | 队列驱动类,需要实现 QueueInterface。 | Redis | | driver.connection | map | 驱动配置。 | | | pid_path | string | 主进程的 PID 文件存储路径。注意运行用户需要可读写权限。 | /var/run/aint-queue | | consumer.sleep_seconds | int | 当任务空闲时,每次 pop 操作后的睡眠秒数。 | 1 | | consumer.memory_limit | int | 工作进程的最大使用内存,超出则重启。单位 MB。| 96 | | consumer.dynamic_mode | bool | 是否开启自动伸缩工作进程。 | true |
    | consumer.capacity | int | 代表每个工作进程在短时间内并且健康状态下的最多处理消息数,它影响了工作进程的自动伸缩策略。 | 5 | | consumer.flex_interval | int | 每 flex_interval 秒,监控进程尝试调整工作进程数(假设开启了自动伸缩工作进程)。 | 5 | | consumer.min_worker_number | int | 工作进程最小数目。 | 5 | | consumer.max_worker_number | int | 工作进程最大数目。 | 30 | | consumer.max_handle_number | int | 当前工作进程最大处理消息数,超出后重启。0 代表无限制。| 0 | | job_snapshot | map | 每隔 job_snapshot.interval 秒,job_snapshot.handles 会被依次执行。job_snapshot.handles 需要实现 JobSnapshotterInterface。| |

    消息推送

    可以在 cli/fpm 运行模式下使用:

    <?php
    
    use Littlesqx\AintQueue\Driver\DriverFactory;
    
    $queue = DriverFactory::make($channel, $options);
    
    // push a job
    $queue->push(function () {
        echo "Hello aint-queue\n";
    });
    
    // push a delay job
    $closureJob = function () {
        echo "Hello aint-queue delayed\n";
    };
    $queue->push($closureJob, 5);
    
    

    更建议使用类任务,这样功能上会更加完整,也可以获得更好的编码体验和性能。

    • 创建的任务类需要继承 JobInterface,详细可参考 /example
    • 注意任务必须能在生产者和消费者中(反)序列化,意味着需要在同一个项目
    • 利用队列快照事件你可以实现队列实时监控,而利用任务中间件,你可以实现任务执行速率限制,任务执行日志等。

    队列管理

    推荐使用 Supervisor 等进程管理工具守护工作进程。

    vendor/bin/aint-queue
    
    AintQueue Console Tool
    
    Usage:
      command [options] [arguments]
    
    Options:
      -h, --help            Display this help message
      -q, --quiet           Do not output any message
      -V, --version         Display this application version
          --ansi            Force ANSI output
          --no-ansi         Disable ANSI output
      -n, --no-interaction  Do not ask any interactive question
      -v|vv|vvv, --verbose  Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
    
    Available commands:
      help                 Displays help for a command
      list                 Lists commands
     queue
      queue:clear          Clear the queue.
      queue:reload-failed  Reload all the failed jobs onto the waiting queue.
      queue:status         Get the execute status of specific queue.
     worker
      worker:listen        Listen the queue.
      worker:reload        Reload worker for the queue.
      worker:run           Run the specific job.
      worker:stop          Stop listening the queue.
    

    测试

    composer test
    

    贡献

    可以通过以下方式贡献:

    1. 通过 issue tracker 提交 bug 或者建议给我们。 2. 回答 issue tracker 中的问题或者修复 bug。 3. 更新和完善文档,或者提交一些改进的代码给我们。

    贡献没有什么特别的要求,只需要保证编码风格遵循 PSR2/PSR12,排版遵循 中文文案排版指北

    License

    MIT

    2 条回复    2020-03-12 17:38:51 +08:00
    gutao1994
        1
    gutao1994  
       2020-03-12 16:01:15 +08:00
    大佬,666
    owenzhang24
        2
    owenzhang24  
       2020-03-12 17:38:51 +08:00
    大佬,666
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5064 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 28ms · UTC 09:42 · PVG 17:42 · LAX 02:42 · JFK 05:42
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.