使用laravel队列无法在我的共享主机解决方案上运行

时间:2015-04-12 20:14:05

标签: php symfony laravel queue

尝试让队列在我的共享主机上运行,​​

  • 我已经设置了一个cron作业来运行' php artisan queue:work'每一分钟。
  • 我正在使用数据库驱动程序
  • 工作进入工作表
  • 如果我使用同步驱动程序,它可以在我的共享主机上运行 在我的开发人员计算机上,它适用于同步和数据库驱动程序。
  • 我没有下降Laravel Queue: How to use on shared hosting提供了足够的答案,因为我有cron的可能性因此我想让它使用数据库驱动程序
  • php是来自cli和web界面的5.5版本。

php artisan队列:在我的共享主机上工作(通过cron)返回

[ErrorException] 
Invalid argument supplied for foreach()

在我的日志文件中写入以下内容。

[2015-04-12 18:59:01] production.ERROR: exception 'ErrorException' with message 'Invalid argument supplied for foreach()' in /home/a109/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php:287 Stack trace:
#0 /home/a109/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php(287): Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'Invalid argumen...', '/home/a109/vend...', 287, Array)
#1 /home/a109/vendor/symfony/console/Symfony/Component/Console/Application.php(823): Symfony\Component\Console\Input\ArgvInput->hasParameterOption(Array)
#2 /home/a109/vendor/symfony/console/Symfony/Component/Console/Application.php(123): Symfony\Component\Console\Application->configureIO(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#3 /home/a109/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(94): Symfony\Component\Console\Application->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#4 /home/a109/artisan(35): Illuminate\Foundation\Console\Kernel->handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#5 {main}

在vendor / symfony / console / Symfony / Component / Console / Input / ArgvInput.php的第287行有这个函数

  /**
 * Returns true if the raw parameters (not parsed) contain a value.
 *
 * This method is to be used to introspect the input parameters
 * before they have been validated. It must be used carefully.
 *
 * @param string|array $values The value(s) to look for in the raw parameters (can be an array)
 *
 * @return bool true if the value is contained in the raw parameters
 */
public function hasParameterOption($values)
{
    $values = (array) $values;

    foreach ($this->tokens as $token) {
        foreach ($values as $value) {
            if ($token === $value || 0 === strpos($token, $value.'=')) {
                return true;
            }
        }
    }

    return false;
}

那是失败的傻逼。

我怎样才能让它发挥作用?

2 个答案:

答案 0 :(得分:10)

Comyn在freenode的#laravel回答

我必须将cron命令更改为:

php -d register_argc_argv=On artisan queue:work

答案 1 :(得分:0)

从Laravel 5.7开始,有一个新的队列命令在空时停止工作:

;

由于这仅适用于大多数电子邮件或少量工作,因此我将其放在cronjob上,以便每分钟运行一次。我说这并不是每分钟超过20个工作的解决方案,但可以处理我的电子邮件。仅发送一封电子邮件,这将每分钟运行大约5秒钟,具体取决于发送的电子邮件数量。

步骤

  1. 创建新命令:php artisan queue:work --stop-when-empty
  2. $ php artisan make:command SendContactEmails中,更改:SendContactEmails.php
  3. protected $signature = 'emails:work';方法中,添加:
handle()
  1. return $this->call('queue:work', [ '--queue' => 'emails', // remove this if queue is default '--stop-when-empty' => null, ]); 文件中,将命令添加到您的命令列表中:
app/Console/Kernal.php
  1. 每分钟安排一次命令:
protected $commands = [
    \App\Console\Commands\SendContactEmails::class
];
  1. 更新您的cronjobs:
protected function schedule(Schedule $schedule)
{
    $schedule->command('emails:work')->everyMinute();
    // you can add ->withoutOverlapping(); if you think it won't finish in 1 minute
}

Source

  

处理所有排队的作业然后退出

     

* * * * * /usr/local/bin/php /home/username/project/artisan schedule:run > /dev/null 2>&1 选项可用于指示工作人员处理所有作业,然后正常退出。如果您希望在队列为空后关闭该容器,请在Docker容器中处理Laravel队列时使用此选项:

     

--stop-when-empty