如何實現異步任務

問:

如何異步處理繁重的業務,避免主業務被長時間阻塞。例如我要給1000用戶發送郵件,這個過程很慢,可能要阻塞數秒,這個過程中因為主流程被阻塞,會影響後續的請求,如何將這樣的繁重任務交給其他進程異步處理。

答:

可以在本機或者其他伺服器甚至伺服器集群預先建立一些任務進程處理繁重的業務,任務進程數可以開多一些,例如CPU的10倍,然後調用方利用AsyncTcpConnection將數據異步發送給這些任務進程異步處理,異步得到處理結果。

任務進程服務端

use Workerman\Worker;
use Workerman\Connection\TcpConnection;
require_once __DIR__ . '/vendor/autoload.php';

// task worker,使用Text協議
$task_worker = new Worker('Text://0.0.0.0:12345');
// task進程數可以根據需要多開一些
$task_worker->count = 100;
$task_worker->name = 'TaskWorker';
$task_worker->onMessage = function(TcpConnection $connection, $task_data)
{
     // 假設發來的是json數據
     $task_data = json_decode($task_data, true);
     // 根據task_data處理相應的任務邏輯.... 得到結果,這裡省略....
     $task_result = ......
     // 發送結果
     $connection->send(json_encode($task_result));
};
Worker::runAll();

在workerman中調用

use Workerman\Worker;
use \Workerman\Connection\AsyncTcpConnection;
use Workerman\Connection\TcpConnection;
require_once __DIR__ . '/vendor/autoload.php';

// websocket服務
$worker = new Worker('websocket://0.0.0.0:8080');

$worker->onMessage = function(TcpConnection $ws_connection, $message)
{
    // 與遠程task服務建立異步連接,IP為遠程task服務的IP,如果是本機就是127.0.0.1,如果是集群就是LVS的IP
    $task_connection = new AsyncTcpConnection('Text://127.0.0.1:12345');
    // 任務及參數數據
    $task_data = array(
        'function' => 'send_mail',
        'args'       => array('from'=>'xxx', 'to'=>'xxx', 'contents'=>'xxx'),
    );
    // 發送數據
    $task_connection->send(json_encode($task_data));
    // 異步獲得結果
    $task_connection->onMessage = function(AsyncTcpConnection $task_connection, $task_result)use($ws_connection)
    {
         // 結果
         var_dump($task_result);
         // 獲得結果後記得關閉異步連接
         $task_connection->close();
         // 通知對應的websocket客戶端任務完成
         $ws_connection->send('task complete');
    };
    // 執行異步連接
    $task_connection->connect();
};

Worker::runAll();

這樣,繁重的任務交給本機或者其他伺服器的進程去做,任務完成後會異步收到結果,業務進程就不會阻塞了。