PHP swoole process的使用

引入背景:假如我们每天有10000个订单生成,需要同步到仓储系统中去,以前做法是开启一个crontab去跑这些任务,但是发现总有感觉同步效率低,间隔时间都是分钟级别的。

解决方案测试:我们将同步订单的任务表添加一个hash作为key,作为分发条件,因为mysql中select如果做mod函数是用不到索引的,所以我们自己做随机hash,但是务必不需要范围太大,以免服务器资源不够,方法是根据hashkey投放到不同的进程中进行同步,测试代码如下

<?php
/**
 * Created by PhpStorm.
 * User: xujun
 * Date: 2017/8/26
 * Time: 9:37
 */
//假定需要处理的数据如下
class Process{
    public $mpid=0;
    public $max_precess=5;
    //代替从数据库中读取的内容
    public $task = [
        [‘uid‘=>1,‘uname‘=>‘bot‘,‘hash‘=>1,‘handle‘=>‘test‘],
        [‘uid‘=>2,‘uname‘=>‘bot1‘,‘hash‘=>2,‘handle‘=>‘test‘],
        [‘uid‘=>3,‘uname‘=>‘bot2‘,‘hash‘=>3,‘handle‘=>‘test‘],
        [‘uid‘=>4,‘uname‘=>‘bot3‘,‘hash‘=>4,‘handle‘=>‘test‘],
        [‘uid‘=>2,‘uname‘=>‘bot4‘,‘hash‘=>2,‘handle‘=>‘test‘],
        [‘uid‘=>3,‘uname‘=>‘bot5‘,‘hash‘=>3,‘handle‘=>‘test‘],
        [‘uid‘=>4,‘uname‘=>‘bot6‘,‘hash‘=>1,‘handle‘=>‘test‘],
    ];
    public $works = [];
    public  $swoole_table = NULL;
    //public $new_index=0;
    function test($index,$task){
        print_r("[".date(‘Y-m-d H:i:s‘)."]".‘work-index:‘.$index.‘处理‘.$task[‘uname‘].‘完成‘.PHP_EOL);
    }

    public function __construct(){
        try {
            $this->swoole_table = new swoole_table(1024);
            $this->swoole_table->column(‘index‘, swoole_table::TYPE_INT);//用于父子进程间数据交换
            $this->swoole_table->create();

            swoole_set_process_name(sprintf(‘php-ps:%s‘, ‘master‘));
            $this->mpid = posix_getpid();
            $this->run();
            $this->processWait();
        }catch (\Exception $e){
            die(‘ALL ERROR: ‘.$e->getMessage());
        }
    }

    public function run(){
        for ($i=0; $i < $this->max_precess; $i++) {
            $this->CreateProcess();
        }
    }

    private function getTask($index){
        $_return = [];
        foreach ($this->task as $v){
            if($v[‘hash‘]==$index){
                $_return[] = $v;
            }
        }
        return $_return;
    }

    public function CreateProcess($index=null){
        if(is_null($index)){//如果没有指定了索引,新建的子进程,开启计数
            $index=$this->swoole_table->get(‘index‘);
            if($index === false){
                $index = 0;
            }else{
                $index = $index[‘index‘]+1;
            }
            print_r($index);
        }
        $this->swoole_table->set(‘index‘,array(‘index‘=>$index));
        $process = new swoole_process(function(swoole_process $worker)use($index){

            swoole_set_process_name(sprintf(‘php-ps:%s‘,$index));
            $task = $this->getTask($index);
            foreach ($task as $v){
                call_user_func_array(array($this,$v[‘handle‘]),array($index,$v));
            }
            sleep(20);
        }, false, false);
        $pid=$process->start();

        $this->works[$index]=$pid;
        return $pid;
    }

    public function rebootProcess($ret){
        $pid=$ret[‘pid‘];
        $index=array_search($pid, $this->works);
        if($index!==false){
            $index=intval($index);
            $new_pid=$this->CreateProcess($index);
            echo "rebootProcess: {$index}={$new_pid} Done\n";
            return;
        }
        throw new \Exception(‘rebootProcess Error: no pid‘);
    }

    public function processWait(){
        while(1) {
            if(count($this->works)){
                $ret = swoole_process::wait();
                if ($ret) {
                    $this->rebootProcess($ret);
                }
            }else{
                break;
            }
        }
    }

}
$process = new Process();

这里代码中,使用了swoole_table作为进程间共享的内存,为了分配index。以及当进程退出后,父进程通过wait重新拉起该进程任务。

测试截图

进程ps

结果 休眠20s后退出后会被自动拉起

时间: 2024-10-13 08:23:31

PHP swoole process的使用的相关文章

swoole process example

$workers = [];$worker_num = 2; for($i = 0; $i < $worker_num; $i++){    $process = new swoole_process('callback_function',false,false);    $process->useQueue();    $pid = $process->start();    $workers[$pid] = $process;    //echo "Master: new

swoole process use queue example

server: class Server{    private $_serv = null;    private $_workers = [];    private $_worker_num = 2;    public function __construct()    {        $this->_serv = new swoole_server('127.0.0.1', 9501);        $this->_serv->on('start', array($this

swoole创建工作进程,执行滞后工作

一,创建守候进程,因为这里不需要Server,也没有Client,数据交换通过redis进行 <?php namespace Kuba\Saas; require_once __DIR__ . '/Core/ErrorHandle.php'; use \Swoole\Timer; use \Swoole\Process; use Kuba\Saas\Core\ErrorHandle; final class Services { private $m_workers = []; private

swoole 父子进程间通信

<?php /** * 场景: * 监控订单表状态 父子进程通信 * 一个主进程 两个子进程实现 */ //设置主进程名 echo '主进程id:' . posix_getpid() . PHP_EOL; cli_set_process_title('php_main'); //1.此子进程用于监听数据的改变 $process1 = new Swoole\Process(function (\Swoole\Process $process) { // cli_set_process_title(

swoole 消息队列

<?php /** * 场景: * 监控订单表状态 队列通信 * 一个进程向队列发布消息 另外两个进程争抢 */ //设置主进程名 echo '主进程id:' . posix_getpid() . PHP_EOL; cli_set_process_title('php_main'); //1.此子进程用于监听数据的改变 $process1 = new \Swoole\Process(function (\Swoole\Process $process) { // cli_set_process_

swoole cpu占用很高 porcess

情况:未开启swoole cup占用20%,开启swoole cup占用飙升到70 各种排查...哪怕是放以下那么点代码,cpu立马飙升70% $SystemNoticeProcess = new Swoole\Process(function($process) use ($server) { }); // 推送系统通知SystemNotice $this->server->addProcess($SystemNoticeProcess); 解决办法:增加sleep休眠 $SystemNot

swoole管道通信

如果是非常简单的多进程执行任务,那么进程间就不需要通讯了,实际情况下,很多业务是需要通讯的,比如,发邮件,如果自进程发送失败了,那么是要通知主进程的等等. swoole_process进程间支持2种通信方式: 1.管道pipe 2.消息队列 管道通讯 半双工: 数据单向流动, 一端只读, 一端只写.同步 vs 异步: 默认为同步阻塞模式, 可以使用 swoole_event_add() 添加管道到 swoole 的 event loop 中, 实现异步IO 管道通信是swoole_process

swoft2 小白教程系列-进程篇

swoft2 自定义用户进程来定期执行用户自定义任务swoft2 支持进程池解决多进程并发执行用户自定义任务 swoft2 进程详解 多进程程序设计能解决很多有意义的问题,程序的主进程运行核心任务,一些辅助进程解决一些例如消息队列的处理,后台定期执行的任务处理,文件监控,定期日志上报等相关功能.每个进程都有独立的上下文,进程之间互不干扰. 功能的相关配置选项 用户进程的配置一般需要在 bean.php 里注册,系统会自动加载用户配置的自定义进程 进程池的配置也需要在 bean.php 配置进程池

Swoole源代码学习记录(十三)——Server模块具体解释(上)

Swoole版本号:1.7.5-stable Github地址:https://github.com/LinkedDestiny/swoole-src-analysis 最终能够正式进入Server.c模块了-- 在之前的分析中,能够看到非常多相关模块的声明都已经写在了Server.h中,就是由于这些模块构成了Server的核心部分.而Server本身,则是一个最上层的对象,它包含了核心的Reactor和Factory模块,存放了消息队列的key值,控制着所有的Connection.所有PHP层