- Laravel version: "^8.54"
- Octane version: "^1.0",
- RabbitMQ version: "3.8.6"
- Package (vladimir-yuldashev/laravel-queue-rabbitmq) version: "^11.3"
While pushing the event data to RabbitMQ via using vladimir-yuldashev/laravel-queue-rabbitmq
package, I am getting these two errors:
- CHANNEL_ERROR - expected 'channel.open'(60, 40) -- getting this error mostly
- broken pipe or closed connection -- sometimes this error pops up
Weirdly, this error occurs every other times. And, when getting success, the queue data are getting lost even though it does not provide any error (not available in rabbitmq queue).
This scenario is happening after a certain time of app deployment, that means - this issue is not happening all the time. After a certain period (exactly not sure how much) of time, these errors are popping up.
Does anybody face similar kind of issue?
Thanks in advance
I had the same issue till now but I managed a solution for it and I wanted to share it here so it can be a reference for anyone will have the same issue.
Describe Bug The bug originally is from how to handle rabbitmq connection with octane because Laravel octane is based on stateful requests not stateless like php fpm which is used by Laravel without octane when octane server starts it creates original app container after that each request sent this octane app create another clone of the original app container so what happens that while octane server is always up and when a rabbitmq connection is down what happens that the original container can't resolves the connection because it's down and can not create a new connection so it makes show this error that the server can not open channel cause the connection was close.
Solution
QueueSerivceProvider.php
class that is originally created in Laravel and here is a copy from ithere we can see that I configured rabbitmq as one of the connectors in Laravel so it can be made as a singleton to create a new connection every time a replica is created to serve a request.
QueueServiceProvider.php
class inapp.php
under application service provider sectionDisconnectedFromRabbit.php
class insideoctane.php
and we need to add in flush array insideoctane.php