-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SSL protocol is shutdown #325
Comments
Can you please attach the RabbitMQ logs from the time when the exception happened? |
Here are some RabbitMQ logs surrounding the exact time we got an
|
Some more details on our setup, the Celery workers are connecting to Rabbit on a separate k8s cluster, with a NAT instance sitting in the middle. Our current working theory is that the NAT instance is doing something to some of the connections, and Celery/Kombu/pyamqp seems to be angry about it. We'll continue to debug the exact root cause, but curious if we can get the Celery stack to be more graceful about these dropped connections. |
Since I don't really know what this error is and I can't find a description of it anywhere, I'm not sure how to help. |
I asked on StackOverflow. That's the answer I got. |
@thedrow Thanks for helping us debug this error! We're still trying to debug where our connections are being dropped and fix the root cause. Eventually it would be nice to fix this behavior to handle drops more gracefully, and I'd be happy to help propose a patch for that. |
@yuvadm did you find something ? |
@Kristin0 Didn't really continue working on this issue, sorry |
@Kristin0 If you have this problem. Please share all the details as well. |
I'm running a celery worker which uses a RabbitMQ broker via an SSL connection. From time to time we're seeing an error in our logs
Which is coming from this line:
https://github.com/celery/py-amqp/blob/master/amqp/transport.py#L430
My best understanding is that
amqp
is attempting to write to a socket that has previously been closed, is it possible to know which side terminate the socket? Can there be any better error handling in this case? Or any possibility to recover from the error?The text was updated successfully, but these errors were encountered: