PHP对REST API停顿的多个cURL请求

菲利普·麦克唐纳

当前,我有一个将多个请求发送到REST API的系统。它的结构如下:

foreach ($data as $d)
{
    $ch = curl_init( $url );
    curl_setopt( $ch, CURLOPT_POST, 1);
    curl_setopt( $ch, CURLOPT_HTTPHEADER, (array of data here));
    curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1);
    $response = curl_exec( $ch );
    $retry = 0;
    while((curl_errno($ch) == 7 || curl_errno($ch) == 52) && $retry < 3)
    {
        $response = curl_exec($ch);
        $retry++;
    }
    curl_close($ch);
    (decode XML Response and loop)
}

(我无法公开整个代码,所以我填写了括号中发生的操作)

但是,在几百次请求后,FastCGI脚本停顿了。如果我以其他方式查询它,REST API在此期间仍会响应,但是此批处理客户端将不再发送请求。几分钟后,它将再次开始响应。我不确定为什么会停顿,我可以通过htop看到在发生这种情况时,两端的线程都没有CPU活动。

请问cURL / PHP脚本为什么会停在这里?

和杰伊

如果您允许使用外部PHP库;我想建议这种方法:https : //github.com/php-curl-class/php-curl-class

    // Requests in parallel with callback functions.
$multi_curl = new MultiCurl();

$multi_curl->success(function($instance) {
    echo 'call to "' . $instance->url . '" was successful.' . "\n";
    echo 'response: ' . $instance->response . "\n";
});
$multi_curl->error(function($instance) {
    echo 'call to "' . $instance->url . '" was unsuccessful.' . "\n";
    echo 'error code: ' . $instance->error_code . "\n";
    echo 'error message: ' . $instance->error_message . "\n";
});
$multi_curl->complete(function($instance) {
    echo 'call completed' . "\n";
});

$multi_curl->addGet('https://www.google.com/search', array(
    'q' => 'hello world',
));
$multi_curl->addGet('https://duckduckgo.com/', array(
    'q' => 'hello world',
));
$multi_curl->addGet('https://www.bing.com/search', array(
    'q' => 'hello world',
));

$multi_curl->start();

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章