佳木斯湛栽影视文化发展公司

主頁 > 知識庫 > php使用Swoole實現(xiàn)毫秒級定時任務的方法

php使用Swoole實現(xiàn)毫秒級定時任務的方法

熱門標簽:服務器配置 Linux服務器 阿里云 電子圍欄 科大訊飛語音識別系統(tǒng) Mysql連接數(shù)設置 銀行業(yè)務 團購網(wǎng)站

項目開發(fā)中,如果有定時任務的業(yè)務要求,我們會使用linux的crontab來解決,但是它的最小粒度是分鐘級別,如果要求粒度是秒級別的,甚至毫秒級別的,crontab就無法滿足,值得慶幸的是swoole提供的強大的毫秒定時器。

應用場景舉例

我們可能會遇到這樣的場景:

場景一:每隔30秒獲取一次本機內(nèi)存使用率

場景二:2分鐘后執(zhí)行報表發(fā)送任務

場景三:每天凌晨2點鐘定時請求第三方接口,如果接口有數(shù)據(jù)返回則停止任務,如果接口由于某種原因沒有響應或者沒有數(shù)據(jù)返回則5分鐘后繼續(xù)嘗試請求該接口,嘗試5次后仍然失敗則停止該任務

以上的三個場景我們都可以歸納為定時任務的范疇。

Swoole毫秒定時器

Swoole提供了異步毫秒定時器函數(shù):

swoole_timer_tick(int $msec, callable $callback):設置一個間隔時鐘定時器,每隔$msec毫秒執(zhí)行一次$callback,類似于javascript中的setInterval()

swoole_timer_after(int $after_time_ms, mixed $callback_function):在指定的時間$after_time_ms后執(zhí)行$callback_function,類似于javascript的setTimeout()。

swoole_timer_clear(int $timer_id):刪除指定id的定時器,類似于javascript的clearInterval()。

解決方案

對于場景一,經(jīng)常用在系統(tǒng)檢測統(tǒng)計方面,實時性要求比較高,但又能控制好頻率,多用于后臺服務器性能監(jiān)控,可以生成可視化圖表??梢允?0秒獲取一次內(nèi)存使用率,也可以是10秒,而crontab最小粒度只能設置為1分鐘。

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

對于場景二,直接定義xx時間后執(zhí)行某項任務的話,貌似crontab比較困難,而使用swoole的swoole_timer_after可以實現(xiàn):

swoole_timer_after(120000, function() use ($str) { //2分鐘后執(zhí)行 
  $this->sendReport(); //發(fā)送報表 
  echo "send report, $str\n"; 
}); 

對于場景三,用來作嘗試請求,請求失敗后繼續(xù),如果成功則停止請求。用crontab也能解決,但是比較傻,比如設置每隔5分鐘請求一次,不管成功會失敗都會去執(zhí)行一次。而用swoole定時器則智能多了。

swoole_timer_tick(5*60*1000, function($timer) use ($url) { // 啟用定時器,每5分鐘執(zhí)行一次 
   $rs = $this->postUrl($url); 

   if ($rs) { 
     //業(yè)務代碼... 
     swoole_timer_clear($timer); // 停止定時器 
     echo date('Y-m-d H:i:s'). "請求接口任務執(zhí)行成功\n"; 
   } else { 
     echo date('Y-m-d H:i:s'). "請求接口失敗,5分鐘后再次嘗試\n"; 
   } 
 }); 

示例代碼

新建文件\src\App\Task.php:

namespace Helloweba\Swoole; 

use swoole_server; 

/** 
* 任務調(diào)度 
*/ 
class Task 
{ 
  protected $serv; 
  protected $host = '127.0.0.1'; 
  protected $port = 9506; 
  // 進程名稱 
  protected $taskName = 'swooleTask'; 
  // PID路徑 
  protected $pidPath = '/run/swooletask.pid'; 
  // 設置運行時參數(shù) 
  protected $options = [ 
    'worker_num' => 4, //worker進程數(shù),一般設置為CPU數(shù)的1-4倍  
    'daemonize' => true, //啟用守護進程 
    'log_file' => '/data/log/swoole-task.log', //指定swoole錯誤日志文件 
    'log_level' => 0, //日志級別 范圍是0-5,0-DEBUG,1-TRACE,2-INFO,3-NOTICE,4-WARNING,5-ERROR 
    'dispatch_mode' => 1, //數(shù)據(jù)包分發(fā)策略,1-輪詢模式 
    'task_worker_num' => 4, //task進程的數(shù)量 
    'task_ipc_mode' => 3, //使用消息隊列通信,并設置為爭搶模式 
  ]; 

  public function __construct($options = []) 
  { 
    date_default_timezone_set('PRC'); 
    // 構建Server對象,監(jiān)聽127.0.0.1:9506端口 
    $this->serv = new swoole_server($this->host, $this->port); 

    if (!empty($options)) { 
      $this->options = array_merge($this->options, $options); 
    } 
    $this->serv->set($this->options); 

    // 注冊事件 
    $this->serv->on('Start', [$this, 'onStart']); 
    $this->serv->on('Connect', [$this, 'onConnect']); 
    $this->serv->on('Receive', [$this, 'onReceive']); 
    $this->serv->on('Task', [$this, 'onTask']);  
    $this->serv->on('Finish', [$this, 'onFinish']); 
    $this->serv->on('Close', [$this, 'onClose']); 
  } 

  public function start() 
  { 
    // Run worker 
    $this->serv->start(); 
  } 

  public function onStart($serv) 

  { 
    // 設置進程名 
    cli_set_process_title($this->taskName); 
    //記錄進程id,腳本實現(xiàn)自動重啟 
    $pid = "{$serv->master_pid}\\n{$serv->manager_pid}"; 
    file_put_contents($this->pidPath, $pid); 
  } 

  //監(jiān)聽連接進入事件 
  public function onConnect($serv, $fd, $from_id) 
  { 
    $serv->send( $fd, "Hello {$fd}!" ); 
  } 

  // 監(jiān)聽數(shù)據(jù)接收事件 
  public function onReceive(swoole_server $serv, $fd, $from_id, $data) 
  { 
    echo "Get Message From Client {$fd}:{$data}\n"; 
    //$this->writeLog('接收客戶端參數(shù):'.$fd .'-'.$data); 
    $res['result'] = 'success'; 
    $serv->send($fd, json_encode($res)); // 同步返回消息給客戶端 
    $serv->task($data); // 執(zhí)行異步任務 
  } 

  /** 
 
  * @param $serv swoole_server swoole_server對象 
  * @param $task_id int 任務id 
  * @param $from\id int 投遞任務的worker_id 
  * @param $data string 投遞的數(shù)據(jù) 
  */ 
  public function onTask(swoole_server $serv, $task_id, $from_id, $data) 
  { 
    swoole_timer_tick(30000, function($timer) use ($task_id) { // 啟用定時器,每30秒執(zhí)行一次 
      $memPercent = $this->getMemoryUsage(); 
      echo date('Y-m-d H:i:s') . '當前內(nèi)存使用率:'.$memPercent."\n"; 
    }); 
  } 


  /** 
  * @param $serv swoole_server swoole_server對象 
  * @param $task_id int 任務id 
  * @param $data string 任務返回的數(shù)據(jù) 
  */ 
  public function onFinish(swoole_server $serv, $task_id, $data) 
  { 
    // 
  } 

 
  // 監(jiān)聽連接關閉事件 
  public function onClose($serv, $fd, $from_id) { 
    echo "Client {$fd} close connection\n"; 
  } 

  public function stop() 
  { 
    $this->serv->stop(); 
  } 

  private function getMemoryUsage() 
  { 
    // MEMORY 
    if (false === ($str = @file("/proc/meminfo"))) return false; 
    $str = implode("", $str); 
    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); 
    //preg_match_all("/Buffers\s{0,}\:+\s{0,}([\d\.]+)/s", $str, $buffers); 

    $memTotal = round($buf[1][0]/1024, 2); 
    $memFree = round($buf[2][0]/1024, 2); 
    $memUsed = $memTotal - $memFree; 
    $memPercent = (floatval($memTotal)!=0) ? round($memUsed/$memTotal*100,2):0; 

    return $memPercent; 
  } 
} 

我們以場景一為例,在onTask啟用定時任務,每隔30秒計算一次內(nèi)存使用率。實際應用中可以把計算好的內(nèi)存按時間寫入數(shù)據(jù)庫等存儲中,然后可以根據(jù)前端需求用來渲染成統(tǒng)計圖表,如:

接著服務端代碼 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.客戶端輸入:

另開命令行窗口,執(zhí)行

[root@localhost public]# php taskClient.php 

請輸入消息 Please input msg:hello

Get Message From Server:{"result":"success"} 
[root@localhost public]# 

3.服務端返回:

如果返回上圖中的結果,則定時任務正常運行,我們會發(fā)現(xiàn)每隔30秒會輸出一條信息。

總結

到此這篇關于php使用Swoole實現(xiàn)毫秒級定時任務的方法的文章就介紹到這了,更多相關php Swoole實現(xiàn)毫秒級定時任務內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • windows系統(tǒng)php環(huán)境安裝swoole具體步驟
  • php使用goto實現(xiàn)自動重啟swoole、reactphp、workerman服務的代碼
  • PHP用swoole+websocket和redis實現(xiàn)web一對一聊天
  • PHP Swoole異步讀取、寫入文件操作示例
  • PHP之Swoole學習安裝教程

標簽:棗莊 衢州 大理 廣元 蚌埠 衡水 萍鄉(xiāng) 江蘇

巨人網(wǎng)絡通訊聲明:本文標題《php使用Swoole實現(xiàn)毫秒級定時任務的方法》,本文關鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    宝鸡市| 新余市| 肇源县| 论坛| 滕州市| 丰顺县| 南城县| 涞源县| 河西区| 哈巴河县| 元氏县| 长寿区| 谷城县| 兰州市| 溆浦县| 武功县| 澄迈县| 鲁甸县| 石楼县| 莒南县| 连山| 陵川县| 宜阳县| 乐业县| 克拉玛依市| 都昌县| 湖北省| 安溪县| 宜阳县| 吴川市| 米脂县| 巴南区| 汕头市| 大宁县| 鸡东县| 介休市| 大方县| 濮阳县| 蓬安县| 陇西县| 左权县|