laravel-queue-database-ph4 icon indicating copy to clipboard operation
laravel-queue-database-ph4 copied to clipboard

Issue with job delete

Open xyrintech opened this issue 7 years ago • 2 comments

The job is still executing but it does not show up on database.

Ex. if a job takes 6 hours to complete then I believe that the concerned record to remain in database till that time. But this is not happening with this package.

I am Laravel 5.6 with MySQL

xyrintech avatar Aug 09 '18 12:08 xyrintech

This bug report is missing a lot of information. What operating system? What version of Laravel? What does the job do? Can you reproduce it with shorter times than 6 hours?

One way this could happen is if the first attempt at executing the job hangs and takes forever (which is at least 6 hours), and another worker sees an abandoned job (based on retry settings) and successfully processes it.

sisve avatar Aug 09 '18 17:08 sisve

Laravel 5.6 Linux 16.10 The jobs gets data from third party service and this sometimes takes upto 60 hours to complete.

6 hours is also an issue

xyrintech avatar Oct 15 '18 12:10 xyrintech