Sep 4, 2024
0
Level 4
Sending task/job to other servers
Hello,
I'm working on a project where, simplifying, two servers are involved: a web server where the app runs and and an encoding server where the video conversion is performed.
With RabbitMQ in mind, the work-flow should be:
- User uploads a video file to the web server using a simple form
- once uploaded as task is created
- A message is send to the encoding server
- The encoding server covert the video
- If everything goes well the video is marked as "ok" in the database and therefore visibile
Forgetting about the database part, my question is about the message / queue process.
I know that Laravel is able to handle queues but it's also able to handle messages between servers like RabbitMQ?
Once again please forgive me is the question sounds dumb, I'm approaching Laravel for the first time sometimes dumb questions come up in my mind.
Thanks, Simon
Please or to participate in this conversation.