-
Community Support Policy
RabbitMQ version used3.13.7 Erlang version used26.2.x Operating system (distribution) usedDebian Linux How is RabbitMQ deployed?Generic binary package rabbitmq-diagnostics status outputSee https://www.rabbitmq.com/docs/cli to learn how to use rabbitmq-diagnostics Logs from node 1 (with sensitive values edited out)See https://www.rabbitmq.com/docs/logging to learn how to collect logs Logs from node 2 (if applicable, with sensitive values edited out)See https://www.rabbitmq.com/docs/logging to learn how to collect logs Logs from node 3 (if applicable, with sensitive values edited out)See https://www.rabbitmq.com/docs/logging to learn how to collect logs rabbitmq.confSee https://www.rabbitmq.com/docs/configure#config-location to find rabbitmq.conf file location Steps to deploy RabbitMQ clusterRabbitMQ server is running as a standalone process, single instance, default configuration. Steps to reproduce the behavior in questionI am trying to use RabbitMQ to send and receive javax.jms.StreamMessages. The message I am having issues with is an application object that contains
All of this works just fine with 39 elements (or less) in the array. When I try to send 40 elements (or more), upon receiving the message 39 of these elements convert just fine but converting the 40th element fails with the following exception
All of this works without issues with Tibco EMS or Solace message brokers, regardless of the number of elements in the array. For the life of me I cannot figure out why sending more than 39 elements fails. If someone can point me to the right direction it would be very much appreciated. advanced.configSee https://www.rabbitmq.com/docs/configure#config-location to find advanced.config file location Application code# relevant messaging-related parts of your code go here Kubernetes deployment file# Relevant parts of K8S deployment that demonstrate how RabbitMQ is deployed |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 14 replies
-
@rcisyk I have moved this to the JMS client repo. What JMS client version do you use? Can you put together an executable example we can run to reproduce this behavior? @acogoluegnes I don't recall seeing something like that. Do you? |
Beta Was this translation helpful? Give feedback.
Confirmed that with the fix everything works as expected. No more exception. Thank you all for fixing this issue so quickly!