php-resque :基於Redis的後臺任務系統

爲何使用php-resque?

php-resque 是輕量級後臺任務系統,基於Redis,功能設計簡單,配置靈活。相比MQ系統大而全的MQ系統,這個顯得小而美。php

php-resque 角色劃分

  • Job 定義任務,是負責具體的業務邏輯。
  • Queue 隊列,負責Job存/取
  • Worker 從Queue中取Job來執行。 通常爲PHP CLI模式下,後臺守護方式運行。

使用

install

  • 若是下載慢, 能夠配置 composer 國內鏡像
composer config -g repo.packagist composer https://packagist.phpcomposer.com
  • 安裝php-resque

舊版python

Composer:This package is abandoned and no longer maintained. The author suggests using the resque/php-resque package instead.web

composer require  "chrisboulton/php-resque 1.2"

更新爲新的擴展包:resque/php-resqueredis

composer require resque/php-resque

編寫Job

DemoJob.phpcomposer

<?php
class DemoJob
{
    public function perform()
    {
        // Work work work
        //echo $this->args['name'];
    }
}

入隊列操做

<?php

Resque::setBackend('localhost:6379');
$args = array(
      'name' => 'hanmeimei',
    );
Resque::enqueue('default', DemoJob::class, $args);

Worker代碼

resque-worker.php工具

<?php
$redis_dsn = '127.0.0.1:6379';
putenv("REDIS_BACKEND=$redis_dsn");
// 引入隊列的入口程序
$resque = realpath(dirname(__FILE__) . '/vendor/chrisboulton/php-resque/resque.php');
require_once $resque;

啓動worker

php-resque 的環境變量有:ui

  • QUEUE – 這個是必要的,會決定 worker 要執行什麼任務,重要的在前,例如 QUEUE=notify,mail,log 。也能夠設定為 QUEUE=* 表示執行全部任務。this

  • APP_INCLUDE – 可選,加載文件用的。能夠設成 APP_INCLUDE=require.php ,在 require.php 中引入全部 Job 的 Class便可。spa

  • COUNT – 設定 worker 數量,預設是1 COUNT=5 。插件

  • REDIS_BACKEND – 設定 Redis 的 ip, port。若是沒設定,預設是連 localhost:6379 。

  • LOGGING, VERBOSE – 設定 log, VERBOSE=1 便可。

  • VVERBOSE – 比較詳細的 log, VVERBOSE=1 debug 的時候能夠開出來看。

  • INTERVAL – worker 檢查 queue 的間隔,預設是五秒 INTERVAL=5 。

  • PIDFILE – 若是你是開單 worker,能夠指定 PIDFILE 把 pid 寫入,例如 PIDFILE=/var/run/resque.pid 。

  • BACKGROUND 能夠把 resque 丟到背景執行。或者使用 php resque.php &就能夠了。

示例

QUEUE=counter php resque-worker.php

至此,php-resque的安裝和使用已經完畢。

後面的章節是工具插件, 僅供參考。


界面 resque-web

監控 PHP-Resque 的運行情況

安裝

gem install resque-web -v 0.0.8

運行

resque-web -p 40000

監控 supervisor

啓動服務

/usr/bin/python /usr/bin/supervisord -c /etc/supervisor/supervisord.conf

監控項目配置
/etc/supervisor/conf.d/lumen_resque.conf

[program:worker_lumen_resque]
directory=/home/wwwroot/mysite
command=php resque-worker.php
environment=QUEUE='default'

優勢:

  • 能夠配置 程序異常退出後自動重啓
  • 制定程序運行用戶
  • 能夠設置進程數
  • 自動重啓
  • supervisord啓動後,自動啓動腳本
  • 分組管理
相關文章
相關標籤/搜索