HHVM - 运行资源广泛的php守护进程

时间:2014-01-05 07:18:26

标签: php c++ hhvm

您好我正在尝试使用hhvm来运行我的应用程序中当前存在的所有后台PHP工作程序。我不想将hhvm作为服务器运行,因为Apache已经在处理它,我想做的就是用hhvm运行我的php代码,而不是常规的Zend引擎。

好的,这是我想要运行的代码。

这是我想要运行的计算密集型模块的切入点

-------------**RunRenderer.php**--------------
#!/usr/bin/php
<?php

require_once 'Config.php';

require_once 'Renderer.php';



Renderer::getInstance()->run();


?>

这里只是控制/分配/管理数千个php任务/进程的主控制器的一小部分。

----------------------------Renderer.php---------------------
<?php

require 'Workers/BumpMapsCalc.php';

/**
 * Main Entry class of the Map rendering module
 * 
 * Create workers for all of the different maps calc sub routines 
 * 
 * 
 * 
 */
class Renderer extends \Core_Daemon {

    /**
     * the interval at which the execute method will run
     * 
     * Interval : 10 min
     * 
     */
    protected $loop_interval = 600;

    /**
     * Set the chunk size
     */
    protected $chunkSize = 500;

    /**
     * Loop counter
     */
    protected $loopCounter;

    /**
     * Low limit and the high limit
     */
    protected $lowLimit;
    protected $highLimit;


    /**
     * set the plugins for lock file and settings ini files
     * 
     */
    protected function setup_plugins() {
        $this->plugin('Lock_File');

        $this->plugin('settings', new \Core_Plugin_Ini());
        $this->settings->filename = BASE_PATH . "/Config/settings.ini";
        $this->settings->required_sections = array('geometry');


    }


    protected function setup() {


        $this->log("Computing Bumps Maps");
    }

    /**
     * Create multiple separate task  that will run in parallel
     * Provide the low limit and the high limit which should effectively partition
     * the whole table into more manageable chunks , thus making importing and 
     * storing data much faster and finished within 10 min
     * 
     */
    protected function execute() {



        for ($this->loopCounter = 1 ; $this->loopCounter <= $this->settings['geometry']['number'] ; $this->loopCounter += $this->chunkSize) {

            $this->lowLimit = $this->loopCounter;
            $this->highLimit = $this->loopCounter + $this->chunkSize;

            $this->task(new LocalBumpMaps($this->lowLimit, $this->highLimit));
        }


    }

    protected function log_file() {

        $dir = BASE_PATH . "/Logs";
        if (@file_exists($dir) == false)
            @mkdir($dir, 0777, true);


        return $dir . '/log_' . date('Y-m-d');
    }

}

?>

通常情况下,我会将程序作为

运行

php RunRenderer.php -d -p ./pid/pid $1

将调用默认的zend引擎,而Renderer.php将分叉数千个LocalBumpMaps实例(以及100个其他地图呈现类)。现在,每个子任务占用大约20-30 mb,工作站中的所有内存都会很快耗尽,从而导致系统停止运行。

当然主渲染引擎是用C ++编写的,但由于一些奇怪的要求,整个前端都在PHP中。 php模块需要每秒执行大约数十亿次计算。因此,剩下的唯一选择是使用HHVM,希望性能和效率得到显着提高。 但问题是我无法使用hhvm运行此代码。这就是我正在尝试的

hhvm RunRenderer.php -p ./pid $1

这根本不起作用。没有进程分叉,没有输出,没有任何反应。所以任何人都可以告诉我如何用hhvm而不是zend运行php脚本。

我希望我的问题有道理,我真的很感激任何帮助。

谢谢, MAXX

1 个答案:

答案 0 :(得分:2)

首先运行以下行而不要求进程:

hhvm RunRenderer.php

如果您看到控制台输出,并且您可以 Ctrl + C 来终止该过程,那么您可以使用Upstart脚本来妖魔化该过程。创建一个名为/etc/init/renderer.conf的文件:

start on startup
stop on shutdown
respawn

script
  hhvm RunRenderer.php
end script

然后您可以通过运行来手动启动和停止该过程:

start renderer

stop renderer

如果您运行的是Ubuntu 12.04LTS及更高版本,将以名称/var/log/upstart/renderer.log自动为您创建一个日志文件。您可以通过拖尾文件来获取实时输出:

tail -f /var/log/upstart/renderer.log