swoole cpu占用很高 porcess

Posted wesky

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swoole cpu占用很高 porcess相关的知识,希望对你有一定的参考价值。

情况:未开启swoole cup占用20%,开启swoole cup占用飙升到70

 

各种排查...哪怕是放以下那么点代码,cpu立马飙升70%

 

 $SystemNoticeProcess = new SwooleProcess(function($process) use ($server) {
         

        });

        // 推送系统通知SystemNotice
        $this->server->addProcess($SystemNoticeProcess);

 

解决办法:增加sleep休眠

 $SystemNoticeProcess = new SwooleProcess(function($process) use ($server) {

            sleep(1);  // cup降低最佳方案

        });

        // 推送系统通知SystemNotice
        $this->server->addProcess($SystemNoticeProcess);

 

扩展:

 $SystemNoticeProcess = new SwooleProcess(function($process) use ($server) {
            // 获取队列长度
            $i = $this->redis()->llen(SystemNotice);
            // 客户端连接数>=1
            if(count($this->server->connections)>=1) {

                    // 获取第一个元素
                    $redis_list = $this->redis()->Lpop(SystemNotice);
                    if ($redis_list) {
                        foreach ($this->server->connections as $conn) {
                            //$this->server->push($conn,json_encode([‘type‘ => ‘market‘,‘date‘ => $show_market_list]));
                            $this->server->push($conn, $redis_list);
                            // sleep(1)  //cup会有所降低,但依然很高
                        }
                    }
            }
            sleep(1);  // cup降低最佳方案

        });

        // 推送系统通知SystemNotice
        $this->server->addProcess($SystemNoticeProcess);

 

这算是swoole process的一个bug

 

以上是关于swoole cpu占用很高 porcess的主要内容,如果未能解决你的问题,请参考以下文章

电脑Edge浏览器非常卡cpu占用很高怎么解决

mac 中kernel task 内存占用很高的问题

解决linux cpu占用不高但是负载很高

浏览器加载flash时CPU占用很高

linux cpu占用率很高

java 读取输入流的时候cpu占用很高,怎么解决