php Swoole實現毫秒級定時任務

項目開發中,若是有定時任務的業務要求,咱們會使用linux的crontab來解決,可是它的最小粒度是分鐘級別,若是要求粒度是秒級別的,甚至毫秒級別的,crontab就沒法知足,值得慶幸的是swoole提供的強大的毫秒定時器。

應用場景舉例
咱們可能會遇到這樣的場景:javascript

  • 場景一:每隔30秒獲取一次本機內存使用率
  • 場景二:2分鐘後執行報表發送任務
  • 場景三:天天凌晨2點鐘定時請求第三方接口,若是接口有數據返回則中止任務,若是接口因爲某種緣由沒有響應或者沒有數據返回則5分鐘後繼續嘗試請求該接口,嘗試5次後仍然失敗則中止該任務

以上的三個場景咱們均可以概括爲定時任務的範疇。

Swoole毫秒定時器
Swoole提供了異步毫秒定時器函數:php

swoole_timer_tick(int $msec, callable $callback):設置一個間隔時鐘定時器,每隔$msec毫秒執行一次$callback,相似於javascript中的setInterval()前端

swoole_timer_after(int $after_time_ms, mixed $callback_function):在指定的時間$after_time_ms後執行$callback_function,相似於javascript的setTimeout()java

swoole_timer_clear(int $timer_id):刪除指定id的定時器,相似於javascript的clearInterval()linux

解決方案

對於場景一,常常用在系統檢測統計方面,實時性要求比較高,但又能控制好頻率,多用於後臺服務器性能監控,能夠生成可視化圖表。能夠是30秒獲取一次內存使用率,也能夠是10秒,而crontab最小粒度只能設置爲1分鐘。web

1 swoole_timer_tick(30000, function($timer) use ($task_id) { // 啓用定時器,每30秒執行一次
2     $memPercent = $this->getMemoryUsage(); //計算內存使用率
3     echo date('Y-m-d H:i:s') . '當前內存使用率:'.$memPercent."\n";
4 });

 

 

對於場景二,直接定義xx時間後執行某項任務的話,貌似crontab比較困難,而使用swoole的swoole_timer_after能夠實現:數據庫

1 swoole_timer_after(120000, function() use ($str) { //2分鐘後執行
2     $this->sendReport(); //發送報表
3     echo "send report, $str\n";
4 });

 

對於場景三,用來做嘗試請求,請求失敗後繼續,若是成功則中止請求。用crontab也能解決,可是比較傻,好比設置每隔5分鐘請求一次,無論成功會失敗都會去執行一次。而用swoole定時器則智能多了。json

 1 swoole_timer_tick(5*60*1000, function($timer) use ($url) { // 啓用定時器,每5分鐘執行一次
 2     $rs = $this->postUrl($url);
 3 
 4     if ($rs) {
 5         //業務代碼...
 6         swoole_timer_clear($timer); // 中止定時器
 7         echo date('Y-m-d H:i:s'). "請求接口任務執行成功\n";
 8     } else {
 9         echo date('Y-m-d H:i:s'). "請求接口失敗,5分鐘後再次嘗試\n";
10     }
11 });

 

示例代碼

新建文件\src\App\Task.php:服務器

  1 <?php 
  2 namespace Helloweba\Swoole;
  3 
  4 use swoole_server;
  5 
  6 /**
  7 * 任務調度
  8 */
  9 class Task
 10 {
 11     protected $serv;
 12     protected $host = '127.0.0.1';
 13     protected $port = 9506;
 14     // 進程名稱
 15     protected $taskName = 'swooleTask';
 16     // PID路徑
 17     protected $pidPath = '/run/swooletask.pid';
 18     // 設置運行時參數
 19     protected $options = [
 20         'worker_num' => 4, //worker進程數,通常設置爲CPU數的1-4倍  
 21         'daemonize' => true, //啓用守護進程
 22         'log_file' => '/data/log/swoole-task.log', //指定swoole錯誤日誌文件
 23         'log_level' => 0, //日誌級別 範圍是0-5,0-DEBUG,1-TRACE,2-INFO,3-NOTICE,4-WARNING,5-ERROR
 24         'dispatch_mode' => 1, //數據包分發策略,1-輪詢模式
 25         'task_worker_num' => 4, //task進程的數量
 26         'task_ipc_mode' => 3, //使用消息隊列通訊,並設置爲爭搶模式
 27     ];
 28 
 29     public function __construct($options = [])
 30     {
 31         date_default_timezone_set('PRC'); 
 32         // 構建Server對象,監聽127.0.0.1:9506端口
 33         $this->serv = new swoole_server($this->host, $this->port);
 34 
 35         if (!empty($options)) {
 36             $this->options = array_merge($this->options, $options);
 37         }
 38         $this->serv->set($this->options);
 39 
 40         // 註冊事件
 41         $this->serv->on('Start', [$this, 'onStart']);
 42         $this->serv->on('Connect', [$this, 'onConnect']);
 43         $this->serv->on('Receive', [$this, 'onReceive']);
 44         $this->serv->on('Task', [$this, 'onTask']);  
 45         $this->serv->on('Finish', [$this, 'onFinish']);
 46         $this->serv->on('Close', [$this, 'onClose']);
 47     }
 48 
 49     public function start()
 50     {
 51         // Run worker
 52         $this->serv->start();
 53     }
 54 
 55     public function onStart($serv)
 56     {
 57         // 設置進程名
 58         cli_set_process_title($this->taskName);
 59         //記錄進程id,腳本實現自動重啓
 60         $pid = "{$serv->master_pid}\n{$serv->manager_pid}";
 61         file_put_contents($this->pidPath, $pid);
 62     }
 63 
 64     //監聽鏈接進入事件
 65     public function onConnect($serv, $fd, $from_id)
 66     {
 67         $serv->send( $fd, "Hello {$fd}!" );
 68     }
 69 
 70     // 監聽數據接收事件
 71     public function onReceive(swoole_server $serv, $fd, $from_id, $data)
 72     {
 73         echo "Get Message From Client {$fd}:{$data}\n";
 74         //$this->writeLog('接收客戶端參數:'.$fd .'-'.$data);
 75         $res['result'] = 'success';
 76         $serv->send($fd, json_encode($res)); // 同步返回消息給客戶端
 77         $serv->task($data);  // 執行異步任務
 78     }
 79 
 80     /**
 81     * @param $serv swoole_server swoole_server對象
 82     * @param $task_id int 任務id
 83     * @param $from_id int 投遞任務的worker_id
 84     * @param $data string 投遞的數據
 85     */
 86     public function onTask(swoole_server $serv, $task_id, $from_id, $data)
 87     {
 88         swoole_timer_tick(30000, function($timer) use ($task_id) { // 啓用定時器,每30秒執行一次
 89             $memPercent = $this->getMemoryUsage();
 90             echo date('Y-m-d H:i:s') . '當前內存使用率:'.$memPercent."\n";
 91         });
 92     }
 93 
 94 
 95     /**
 96     * @param $serv swoole_server swoole_server對象
 97     * @param $task_id int 任務id
 98     * @param $data string 任務返回的數據
 99     */
100     public function onFinish(swoole_server $serv, $task_id, $data)
101     {
102         //
103     }
104 
105 
106     // 監聽鏈接關閉事件
107     public function onClose($serv, $fd, $from_id) {
108         echo "Client {$fd} close connection\n";
109     }
110 
111     public function stop()
112     {
113         $this->serv->stop();
114     }
115 
116     private function getMemoryUsage()
117     {
118         // MEMORY
119         if (false === ($str = @file("/proc/meminfo"))) return false;
120         $str = implode("", $str);
121         preg_match_all("/MemTotal\s{0,}\:+\s{0,}([\d\.]+).+?MemFree\s{0,}\:+\s{0,}([\d\.]+).+?Cached\s{0,}\:+\s{0,}([\d\.]+).+?SwapTotal\s{0,}\:+\s{0,}([\d\.]+).+?SwapFree\s{0,}\:+\s{0,}([\d\.]+)/s", $str, $buf);
122         //preg_match_all("/Buffers\s{0,}\:+\s{0,}([\d\.]+)/s", $str, $buffers);
123 
124         $memTotal = round($buf[1][0]/1024, 2);
125         $memFree = round($buf[2][0]/1024, 2);
126         $memUsed = $memTotal - $memFree;
127         $memPercent = (floatval($memTotal)!=0) ? round($memUsed/$memTotal*100,2):0;
128 
129         return $memPercent;
130     }
131 }

 

 

咱們以場景一爲例,在onTask啓用定時任務,每隔30秒計算一次內存使用率。實際應用中能夠把計算好的內存按時間寫入數據庫等存儲中,而後能夠根據前端需求用來渲染成統計圖表,如:swoole



接着服務端代碼 public\taskServer.php :

<?php 
require dirname(__DIR__) . '/vendor/autoload.php';

use Helloweba\Swoole\Task;

$opt = [
    'daemonize' => false
];
$ser = new Task($opt);
$ser->start();

 

 

客戶端代碼 public\taskClient.php :

<?php 
class Client
{
    private $client;

    public function __construct() {
        $this->client = new swoole_client(SWOOLE_SOCK_TCP);
    }

    public function connect() {
        if( !$this->client->connect("127.0.0.1", 9506 , 1) ) {
            echo "Error: {$this->client->errMsg}[{$this->client->errCode}]\n";
        }
        fwrite(STDOUT, "請輸入消息 Please input msg:");
        $msg = trim(fgets(STDIN));
        $this->client->send( $msg );
        $message = $this->client->recv();
        echo "Get Message From Server:{$message}\n";
    }
}

$client = new Client();
$client->connect();

 

驗證效果

1.啓動服務端:

php taskServer.php

 

2.客戶端輸入:

另開命令行窗口,執行

[root@localhost public]# php taskClient.php 
請輸入消息 Please input msg:hello
Get Message From Server:{"result":"success"}
[root@localhost public]# 

 

3.服務端返回:

若是返回上圖中的結果,則定時任務正常運行,咱們會發現每隔30秒會輸出一條信息。

相關文章
相關標籤/搜索