I have in my scenario 3 servers http
running the same application Laravel
and sharing the same Database, where the first server makes LoadBalance
using nginx
, basically with the same load weight. >
The application works with several job queues using the database drive in the "jobs" table.
The only server that processes jobs
( php artisan queue:listen
) is app1.
I would like to know if there is any contraindication for processing jobs
on other servers as well if someone has had similar experience.