rennokki/laravel-aws-eb

Queues

mchumer opened this issue · 3 comments

Hello,

I have two questions.

1 - it's possible to use horizon when using multiple servers on a load balancer?

2 - I'm trying to start multiple queues with the command bellow but it doesn't work. It simply doesn't execute my jobs.

php artisan queue:work --sleep=3 --tries=3 --backoff=3 --timeout=3600 --max-time=3600 --queue=default, notifications, imports

Thank you

Hello! Someone has the same problem?

You can use Horizon on multiple servers with Load Balancer. It is using Redis and the jobs will be processed with deadlocks. I use it actively. 😅

Ok. thank you.