Hello everyone! I encountered an issue with hanging processes. Specifically,
/usr/local/bin/php artisan schedule:run
appears in my process log about 10 times
I have 5 cron jobs, each limited to a maximum execution time of one hour, but how can they exist for more than 4 hours?
Here is an example of a cron job (the others have different start times):
@Nakov
Thank you) Yes, that could work, but some tasks might be missed. I found my mistakes, including realizing that I can't rely on "max_execution_time". I've already decided to rewrite it using queues and just add tasks via cron, which will probably be more correct =)