首頁  >  文章  >  後端開發  >  swoole server中的定時器不準確出現抖動的情況,求解答

swoole server中的定時器不準確出現抖動的情況,求解答

WBOY
WBOY原創
2016-09-02 08:57:051227瀏覽

定時器列印的日誌出現抖動情況,如下:
timer: ##23496 ##2016-09-01 19:23:24
timer: ##23496 ##2016-09-01 19:23
timer: ##23496 ##2016-09-01 19:23:27
timer: ##23496 ##2016-09-01 19:23:27
timer: ##23496 ##2016-09-016-109 :23:28
timer: ##23496 ##2016-09-01 19:23:29
timer: ##23496 ##2016-09-01 19:23:30
timer: ##23496 ##2016- 09-01 19:23:31
timer: ##23496 ##2016-09-01 19:23:33
timer: ##23496 ##2016-09-01 19:23:33
timer:6 ##2016-09-01 19:23:36
timer: ##23496 ##2016-09-01 19:23:37
timer: ##23496 ##2016-09-01 19:23:39 : ##23496 ##2016-09-01 19:23:39
timer: ##23496 ##2016-09-01 19:23:40
timer: ##23496 ##2016-09-01 19:231 :41
timer: ##23496 ##2016-09-01 19:23:42
timer: ##23496 ##2016-09-01 19:23:43
timer: ##23496 #2016-201 01 19:23:45

是不是timer中process signal註冊有問題?還是signal和server搭配使用有問題? 程式碼如下:

<code><?php
class box{
    static $list = array();

    static function processDo()
    {
        $echo = 'timer: ##'. posix_getpid() . ' ##'. date( 'Y-m-d H:i:s').PHP_EOL;
        file_put_contents( '/tmp/xx.log' , $echo , FILE_APPEND );

        $process = new swoole_process( function( swoole_process $worker ){
            swoole_set_process_name( 'lau_php_process' . posix_getpid() );
            exec( 'php -i' , $output , $status );
            echo 'process:' . posix_getpid() . ':: exec.status' . $status . PHP_EOL;
            sleep(5);
            $worker->exit(1);
        });
        if (!($pid = $process->start())) {
        }
        box::$list[$pid] = array(
            "start" => microtime(true),
            "process" =>$process,
        );
    }

    static function registerSingal()
    {
        swoole_process::signal(SIGTERM, function ($signo) {
            exit();
        });
        swoole_process::signal( SIGCHLD, function( $signo ) {
            while ($ret = swoole_process::wait(false)) {
                $pidx = $ret[ 'pid' ];
                print_r( $ret );
                print_r( self::$list );
                if( isset( self::$list[ $pidx ] ) )
                {
                    echo "SIGNAL: $signo\n";
                    $end = microtime(true);
                    $start = box::$list[$pidx]["start"];
                    echo ("##{$pidx} exit... [Runtime:" . sprintf("%0.6f", $end - $start) . "]").PHP_EOL;
                    unset( box::$list[$pidx] );
                }
                else
                {
                    echo "nono SIGNAL: $signo\n";
                }
            }
        });
    }
}


####################################################################################################
$http = new swoole_http_server("0.0.0.0",9501,SWOOLE_BASE);
//初始化swoole服务
$http->set(array(
    'task_worker_num' => 2,
    'worker_num'  => 2,
    'daemonize'   => 0, //是否作为守护进程,此配置一般配合log_file使用
    'max_request' => 1000,
    'dispatch_mode' => 2,
    'debug_mode' => 1,
    'log_file'    => './swoole.log',
));

$http->on('Start', function(){
        echo 'start pid#' . posix_getpid() . '#' . __LINE__ . PHP_EOL;
        echo SWOOLE_VERSION . " onStart\n";
} );
$http->on('WorkerStart', function( $serv , $worker_id) use ( $http ){
        // 在Worker进程开启时绑定定时器
        swoole_set_process_name( 'lau_php_worker' . posix_getpid() );
        // 只有当worker_id为0时才添加定时器,避免重复添加
        if( $worker_id == 0 ) {
            box::registerSingal();
            swoole_timer_tick(1000,function( $params ){
                box::processDo();
            });
        }
});
$http->on('request',function($request,$response) use ( $http ){
    echo '____request pid#' . posix_getpid() . '#' . __LINE__ . PHP_EOL;
    $out = json_encode(box::$list);
    $response->end($out);
});

$http->on( 'task', function($http, $taskId, $fromId, $request){
    echo '+++++task:'.$http->worker_pid.PHP_EOL;
    return ;
});

$server = $http;
$http->on( 'finish' , function($server, $taskId, $ret)
{
});
swoole_set_process_name( 'lau_php_main' . posix_getpid() );
$http->start();</code>
回覆內容:

定時器列印的日誌出現抖動情況,如下:timer: ##23496 ##2016-09-01 19:23:24
timer: ##23496 ##2016-09-01 19:23
timer: ##23496 ##2016-09-01 19:23:27
timer: ##23496 ##2016-09-01 19:23:27
timer: ##23496 ##2016-09-016-109 :23:28
timer: ##23496 ##2016-09-01 19:23:29
timer: ##23496 ##2016-09-01 19:23:30
timer: ##23496 ##2016- 09-01 19:23:31
timer: ##23496 ##2016-09-01 19:23:33
timer: ##23496 ##2016-09-01 19:23:33
timer:6 ##2016-09-01 19:23:36
timer: ##23496 ##2016-09-01 19:23:37
timer: ##23496 ##2016-09-01 19:23:39 : ##23496 ##2016-09-01 19:23:39
timer: ##23496 ##2016-09-01 19:23:40
timer: ##23496 ##2016-09-01 19:231 :41
timer: ##23496 ##2016-09-01 19:23:42
timer: ##23496 ##2016-09-01 19:23:43
timer: ##23496 #2016-201 01 19:23:45

是不是timer中process signal註冊有問題?還是signal和server搭配使用有問題?

程式碼如下:

<code><?php
class box{
    static $list = array();

    static function processDo()
    {
        $echo = 'timer: ##'. posix_getpid() . ' ##'. date( 'Y-m-d H:i:s').PHP_EOL;
        file_put_contents( '/tmp/xx.log' , $echo , FILE_APPEND );

        $process = new swoole_process( function( swoole_process $worker ){
            swoole_set_process_name( 'lau_php_process' . posix_getpid() );
            exec( 'php -i' , $output , $status );
            echo 'process:' . posix_getpid() . ':: exec.status' . $status . PHP_EOL;
            sleep(5);
            $worker->exit(1);
        });
        if (!($pid = $process->start())) {
        }
        box::$list[$pid] = array(
            "start" => microtime(true),
            "process" =>$process,
        );
    }

    static function registerSingal()
    {
        swoole_process::signal(SIGTERM, function ($signo) {
            exit();
        });
        swoole_process::signal( SIGCHLD, function( $signo ) {
            while ($ret = swoole_process::wait(false)) {
                $pidx = $ret[ 'pid' ];
                print_r( $ret );
                print_r( self::$list );
                if( isset( self::$list[ $pidx ] ) )
                {
                    echo "SIGNAL: $signo\n";
                    $end = microtime(true);
                    $start = box::$list[$pidx]["start"];
                    echo ("##{$pidx} exit... [Runtime:" . sprintf("%0.6f", $end - $start) . "]").PHP_EOL;
                    unset( box::$list[$pidx] );
                }
                else
                {
                    echo "nono SIGNAL: $signo\n";
                }
            }
        });
    }
}


####################################################################################################
$http = new swoole_http_server("0.0.0.0",9501,SWOOLE_BASE);
//初始化swoole服务
$http->set(array(
    'task_worker_num' => 2,
    'worker_num'  => 2,
    'daemonize'   => 0, //是否作为守护进程,此配置一般配合log_file使用
    'max_request' => 1000,
    'dispatch_mode' => 2,
    'debug_mode' => 1,
    'log_file'    => './swoole.log',
));

$http->on('Start', function(){
        echo 'start pid#' . posix_getpid() . '#' . __LINE__ . PHP_EOL;
        echo SWOOLE_VERSION . " onStart\n";
} );
$http->on('WorkerStart', function( $serv , $worker_id) use ( $http ){
        // 在Worker进程开启时绑定定时器
        swoole_set_process_name( 'lau_php_worker' . posix_getpid() );
        // 只有当worker_id为0时才添加定时器,避免重复添加
        if( $worker_id == 0 ) {
            box::registerSingal();
            swoole_timer_tick(1000,function( $params ){
                box::processDo();
            });
        }
});
$http->on('request',function($request,$response) use ( $http ){
    echo '____request pid#' . posix_getpid() . '#' . __LINE__ . PHP_EOL;
    $out = json_encode(box::$list);
    $response->end($out);
});

$http->on( 'task', function($http, $taskId, $fromId, $request){
    echo '+++++task:'.$http->worker_pid.PHP_EOL;
    return ;
});

$server = $http;
$http->on( 'finish' , function($server, $taskId, $ret)
{
});
swoole_set_process_name( 'lau_php_main' . posix_getpid() );
$http->start();</code>

你這個屬於正常現象,您可以打開計算機時鐘設定看看秒數是不是4秒短5秒長的規律?具體看下面

前一陣子,松鼠會中有人提到,Windows 系統中的秒針走起來,前四秒快,而後一秒慢。然後又說是今年才開始的,預示著地球的劇變,等等不著邊際的話。很不以為然。但是,這種快慢不一的現象原來是真的,現在有人提供了一個解釋,是程序的問題:

如果你細心注意過的話,點開2K/XP/2K3系統右下角的時鐘,讓他的秒針走動起來的時候,會出現一個很有意思的現象:前四秒鐘數字和秒針變化的快,第五秒感覺很長,這是為什麼呢?

原因實際上出在那個表的精確度。

如果學過Windows的C++程式設計可以知道,WM_TIMER是常用的計時器。但這個定時器的精度不是很高。在Windows的Clock這個子程式中,其實就是用了WM_TIMER來進行定時。當顯示秒針時,表格的更新由這樣一句語句觸發:

SetTimer (hWnd, TimerID, OPEN_TLEN, 0L);

SetTimer的用法很簡單,設定好Timer之後,每次觸發只要重新取目前時間重畫錶盤就可以了。那麼OPEN_TLEN就是Timer的觸發時間。這個時間是常數,在受到影響的系統裡面被定義為450,也就是不到半秒。

定義成450ms會出現什麼現象?我們來看一組數。第一行和第三行是更新的次數,他們下面是更新的毫秒數。

 1   2    3    4    5    6    7    8

450 900 1350 18000250350

  9   10   11   12   13   14   15   16   17
4050 4500 4950 54006250

可以看到,在第一秒內(

那為什麼要設計成這樣?大概是因為這個表只是讓你有個時間觀念,只要不走錯,秒級的響應並不重要吧……畢竟這個世界上沒有多少人一天到晚盯著秒針數拍子的。

以上解釋來自 opal.

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn