异步子进程中的Symfony2命令

时间:2014-05-27 11:19:05

标签: php mongodb symfony asynchronous process

我是Symfony2的新手,在尝试运行异步命令时遇到了阻塞:

class MyCommand extends ContainerAwareCommand{

protected function configure()
{
    $this
        ->setName('my:command')
        ->setDescription('My command')
        ->addArgument(
            'country',
            InputArgument::REQUIRED,
            'Which country?'
        )
    ;
}

protected function execute(InputInterface $input, OutputInterface $output)
{

    $country = $input->getArgument('country');


    // Obtain the doctrine manager
    $dm = $this->getContainer()->get('doctrine_mongodb.odm.document_manager');

   $users = $dm->getRepository('MyBundle:User')
        ->findBy( array('country'=>$country));
}}

当我从命令行调用它时,它非常有效:

php app/console my:command uk

但是当我把它称为Symfony2进程时它不起作用:

 $process = new Process("php ../app/console my:command $country");
 $process->start();

我收到数据库错误:" [MongoWriteConcernException] 127.0.0.1:27017:not master "

我认为这意味着该流程没有获得我的数据库配置......

我只想运行一个异步流程,还有其他办法吗?

也许一种方法可以调用不需要答案继续运行的应用程序命令?

也许我需要使用注射?

PS:我目前的命令只是一个测试,最后它应该是一个昂贵的'操作...

3 个答案:

答案 0 :(得分:6)

好吧,我发现发生了什么......

我使用多种环境:DEV,TEST和PROD。

我也使用不同的服务器。

因此DEV环境是我自己的机器,具有简单的mongodb配置。 但TEST环境位于其他服务器上,具有副本集配置...

现在错误得到充分理解:“[MongoWriteConcernException] 127.0.0.1:27017:not master”

要解决这个问题,我刚刚将环境参数( - env = )添加到流程中,一切都像魅力一样:

$process = new Process("php ../app/console my:command $country --env=test");

实际上,为了获得正确的环境,我使用了这个:

$this->get('kernel')->getEnvironment();

让我的代码如下:

$process = new Process("php ../app/console my:command $country --env=".$this->get('kernel')->getEnvironment());

也许这不是一种美妙的方式,但它适用于我:)

答案 1 :(得分:1)

Disclamer:对于您尝试做的事情,这可能有点过分:)

我会选择相反的方式:pthreads

首先,对StackOverflow的快速检查向我展示了使用pthreads的一个非常好的例子:Multi-threading is possible in php

然后,知道你可以从另一个命令调用你的命令:

http://www.craftitonline.com/2011/06/calling-commands-within-commands-in-symfony2/

...让你拼成所有部分。它有点复杂,但它完成了这项工作。

答案 2 :(得分:0)

如果您想在Symfony2 / 3中完全执行异步代码,那么AsyncServiceCallBundle就可以了。

你应该这样称呼它:

$this->get('krlove.async')->call('your_service_id', 'method_name', [$arg1, $arg2]);

在内部,它使用this方法在后台运行您的代码。