Mark Essel
Mark Essel
I had this for a backlog of 1000+ jobs, I ended up writing a script to clear them all out and restarted the server. Not sure what caused it to...
We ran into again. It appears to occur whenever a large number of jobs are queued in a short time interval. I'll try to focus on a test case locally...
I didn't even think redis repl, cool.
Reviewing tips for preventing stuck queues: https://github.com/Automattic/kue#prevent-from-stuck-active-jobs This could definitely be the cause as I'm doing media processing and all kinds of interesting errors can arise. I'll go with the...
some good stuff mentioned in this thread as well (similar issue) https://github.com/Automattic/kue/issues/130 I'm trying something in the workers now to gracefully shutdown. I was reliably getting the queue stuck by...
ahoy olalonde -> this was an earlier batch job I was able to run and kill and get consistently stuck jobs. Now with some modifications it doesn't get stuck, but...
Updated the gist to handle setting active jobs to inactive Ok, believe my latest version of that gist works as expected, pauses worker and makes any incomplete jobs inactive so...
Yeah I didn't handle uncaught exceptions, and there could be other signals I missed but it worked very well while I killed and restarted it testing locally. No stuck queue...
trying a variation on my build line to get phpbrew to recognize/link with homebrew built dependencies ``` phpbrew --debug install 7.3 +cli +fpm +filter +json +curl="$(brew --prefix curl)" +mbstring +mysql...
tried manually adding zlib to the above ``` phpbrew --debug install 7.3 +cli +fpm +filter +json +curl="$(brew --prefix curl)" +mbstring +mysql +pgsql +opcache +readline="$(brew --prefix readline)" +xml +openssl="$(brew --prefix openssl)"...