Frame size exceeds frame max #11170
Replies: 1 comment
-
@shayktrust per our community support policy, you need to provide an executable way to reproduce and be using the latest release series, or our team will disengage. Without a way to reproduce, all we can say is that it is very likely a concurrency hazard in your application. Take a traffic capture for clues. I'm talking about this kind of limitations. Although concurrent writes to the socket on a shared connection are usually synchronized by clients (unlikely publish operations on a shared channel), you haven't It's unlikely that the issue has anything to do with the load balancer. A TCP load balancer should not cause any behavior differences except for these ones with certain settings. That case is not applicable here. |
Beta Was this translation helpful? Give feedback.
-
Describe the bug
Connection to RabbitMQ fails with Error: Frame size exceeds frame max.
I've run into some issues with RabbitMQ connections. When I direct the application to the RabbitMQ LB connection string, such as this one: amqps://test:xxx-debugg-password@mq.debugg.xxx.io:5671, I receive an error message stating: "Failed: Error: Frame size exceeds frame max," with a timestamp of 1714901442519.
However, when I use the connection string locally (amqp://test:xxx-debugg-password@rabbitmq.rabbitmq.svc.cluster.local:5672), the application establishes a connection successfully.
Reproduction steps
Expected behavior
Verify that the connection is successfully established using the local connection string:
amqp://test:[xxx-debugg-password@rabbitmq.rabbitmq.svc.cluster.local](mailto:xxx-debugg-password@rabbitmq.rabbitmq.svc.cluster.local):5672
.Expect to encounter an error while using the LB connection string:
amqps://test:[xxx-debugg-password@mq.debugg.xxx.io](mailto:xxx-debugg-password@mq.debugg.xxx.io):5671
.Let me know if you need anything else.
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions