laravel - 重试 MaxAttemptsExceededException 作业

标签 laravel laravel-5 lumen laravel-queue laravel-jobs

我在 failed_jobs 上有多个失败的作业。我尝试重新排队 MaxAttemptsExceededException 但总是失败。如何重试那里的工作类型?

注意:每次我通过 php artisan queue:retry id 重新排队作业时命令作业立即失败。甚至不执行监听器的第一行代码( app('log')->info('test'); )。

Illuminate\Queue\MaxAttemptsExceededException: Froakie\Listeners\UploadPolicy has been attempted too many times or run too long. The job may have previously timed out. in /opt/dis/releases/20180906105455/vendor/illuminate/queue/Worker.php:394
Stack trace:
#0 /opt/dis/releases/20180906105455/vendor/illuminate/queue/Worker.php(314): Illuminate\Queue\Worker->markJobAsFailedIfAlreadyExceedsMaxAttempts('redis', Object(Illuminate\Queue\Jobs\RedisJob), 5)
#1 /opt/dis/releases/20180906105455/vendor/illuminate/queue/Worker.php(270): Illuminate\Queue\Worker->process('redis', Object(Illuminate\Queue\Jobs\RedisJob), Object(Illuminate\Queue\WorkerOptions))
#2 /opt/dis/releases/20180906105455/vendor/illuminate/queue/Worker.php(114): Illuminate\Queue\Worker->runJob(Object(Illuminate\Queue\Jobs\RedisJob), 'redis', Object(Illuminate\Queue\WorkerOptions))
#3 /opt/dis/releases/20180906105455/vendor/illuminate/queue/Console/WorkCommand.php(101): Illuminate\Queue\Worker->daemon('redis', 'default', Object(Illuminate\Queue\WorkerOptions))
#4 /opt/dis/releases/20180906105455/vendor/illuminate/queue/Console/WorkCommand.php(85): Illuminate\Queue\Console\WorkCommand->runWorker('redis', 'default')
#5 [internal function]: Illuminate\Queue\Console\WorkCommand->handle()
#6 /opt/dis/releases/20180906105455/vendor/illuminate/container/BoundMethod.php(29): call_user_func_array(Array, Array)
#7 /opt/dis/releases/20180906105455/vendor/illuminate/container/BoundMethod.php(87): Illuminate\Container\BoundMethod::Illuminate\Container\{closure}()
#8 /opt/dis/releases/20180906105455/vendor/illuminate/container/BoundMethod.php(31): Illuminate\Container\BoundMethod::callBoundMethod(Object(Laravel\Lumen\Application), Array, Object(Closure))
#9 /opt/dis/releases/20180906105455/vendor/illuminate/container/Container.php(549): Illuminate\Container\BoundMethod::call(Object(Laravel\Lumen\Application), Array, Array, NULL)
#10 /opt/dis/releases/20180906105455/vendor/illuminate/console/Command.php(183): Illuminate\Container\Container->call(Array)
#11 /opt/dis/releases/20180906105455/vendor/symfony/console/Command/Command.php(251): Illuminate\Console\Command->execute(Object(Symfony\Component\Console\Input\ArgvInput), Object(Illuminate\Console\OutputStyle))
#12 /opt/dis/releases/20180906105455/vendor/illuminate/console/Command.php(170): Symfony\Component\Console\Command\Command->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Illuminate\Console\OutputStyle))
#13 /opt/dis/releases/20180906105455/vendor/symfony/console/Application.php(946): Illuminate\Console\Command->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#14 /opt/dis/releases/20180906105455/vendor/symfony/console/Application.php(248): Symfony\Component\Console\Application->doRunCommand(Object(Illuminate\Queue\Console\WorkCommand), Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#15 /opt/dis/releases/20180906105455/vendor/symfony/console/Application.php(148): Symfony\Component\Console\Application->doRun(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#16 /opt/dis/releases/20180906105455/vendor/illuminate/console/Application.php(88): Symfony\Component\Console\Application->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#17 /opt/dis/releases/20180906105455/vendor/laravel/lumen-framework/src/Console/Kernel.php(84): Illuminate\Console\Application->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#18 /opt/dis/releases/20180906105455/artisan(35): Laravel\Lumen\Console\Kernel->handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
#19 {main}

我的听众:
<?php

namespace Froakie\Listeners;

use Carbon\Carbon;
use Froakie\Components\CRM\CrmFactory;
use Froakie\DTOs\Policy;
use Froakie\Events\PolicyIncoming;
use Froakie\Services\LeadsService;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;

/**
 * Class UploadPolicy
 *
 * @package Froakie\Listeners
 * @author Miguel Borges <miguel.borges@edirectinsure.com>
 */
class UploadPolicy implements ShouldQueue
{
    use InteractsWithQueue;

    /**
     * The number of seconds the job can run before timing out.
     *
     * @var int
     */
    public $timeout = 180;

    /**
     * The number of times the job may be attempted.
     *
     * @var int
     */
    public $tries = 20;

    /**
     * @var \Froakie\Services\LeadsService
     */
    protected $leadsService;

    /**
     * Create the event listener.
     *
     * @param \Froakie\Services\LeadsService $leadsService
     */
    public function __construct(LeadsService $leadsService)
    {
        $this->leadsService = $leadsService;
    }

    /**
     * Handle the event.
     *
     * @param \Froakie\Events\PolicyIncoming $event
     * @throws \Exception
     */
    public function handle(PolicyIncoming $event)
    {
        try {
            app('log')->debug('UploadPolicy listener has catch a PolicyIncoming Event', ['event' => $event]);
            $crm = CrmFactory::getInstance()->getCRMLeadAdapter($event->crm);
            $crm->uploadPolicy($event->policy, $event->policyType, $event->lead, $event->options);

            app('log')->info(
                "A policy has been uploaded to lead {$event->lead->reference} in {$event->crm}",
                [
                    'reference' => $event->lead->reference
                ]
            );
        } catch (\Exception $exception) {
            $status = Policy::API_STATUS_DOWNLOAD_POLICY_RETRING;
            if ($this->attempts() >= $this->job->maxTries()) {
                $status = Policy::API_STATUS_DOWNLOAD_POLICY_FAILED;
            }
            $crm->updatePolicyAPIStatus($status, $event->lead, $event->options['personNumber']);
            app('log')->error("A error occurred on send policy of lead {$event->lead->reference} in {$event->crm}", [
                'event' => $event,
                'exception' => $exception
            ]);

            if ($this->attempts() < $this->job->maxTries()) {
                $this->release(Carbon::now()->addMinutes(fib($this->attempts())));
            } else {
                throw $exception;
            }
        }
    }

    /**
     * Determine the time at which the job should timeout.
     *
     * @return \DateTime
     */
    public function retryUntil()
    {
        return Carbon::now()->addMinutes(3);
    }
}

最佳答案

发生这种情况是因为作业 uuid 不是唯一的,可能是空的,所以当同一个类作业在不同的作业中多次失败时,它会导致具有相同类的所有其他作业失败。
您可以运行它来强制运行作业

php artisan queue:worker --tries=9999999999999

关于laravel - 重试 MaxAttemptsExceededException 作业,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52255426/

相关文章:

php - 流明使 :command

mysql - 查询返回 0 而不是数据

mysql - 如何在mysql中为每辆车选择一条记录

Laravel 迁移更改使列可以为空

laravel - 如何将laravel vue站点部署到共享主机

php - Laravel Eloquent ORM 查询关系内的关系

laravel - 如何让 Laravel 异步工作?

laravel - 如何在 Lumen 模型中声明复合主键?

php - 更改不会反射(reflect)在 Laravel View 中

php - 在 View 编辑器中检索 View 数据