RabbitMQ docker container started spewing out comma separated numbers to stdout #9068
Unanswered
RyanWoodSilac
asked this question in
Questions
Replies: 3 comments 4 replies
-
I have never seen behavior like this. Let's start with the basics...
|
Beta Was this translation helpful? Give feedback.
1 reply
-
PS with enough context from your logs we might be able to make sense of those numbers:
|
Beta Was this translation helpful? Give feedback.
2 replies
-
@RyanWoodSilac some suggestions:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We are running RabbitMQ in a Docker Swarm as a service with one container connecting to a django instance to handle scheduled tasks. The rabbitmq service has a mounted cifs volume pointing to a SAN share and has been working in this config for a couple of years. This weekend while it was processing daily tasks the container hit max CPU and memory and standard output started outputting comma separated numbers followed by \n in hundreds of thousands of rows. Here is an example:
117,112,86,11,103,114,111,117,112,95,105,110,100,\n 101,120,86,7,114,101,116,114,105,101,115,73,0,0,0,\n 0,9,116,105,109,101,108,105,109,105,116,65,0,0,0,\n 2,86,86,7,114,111,111,116,95,105,100,83,0,0,0,36,\n
There were also some text in the logs periodically:
del,no_ack},\n {{true,\n
We restarted the docker service a few times with the container behaving the same. We ended up pinning the container to one of the Docker nodes and mounting a local, empty volume for it to use and it started working as normal.
There were no indications of network interruption or other infrastructure issue associated with the swarm or the SAN volume. My first guess would be these are some sort of metrics or debug logs? What could cause rabbitmq to behave like this? I believe it is tied to the previous cifs volume but am not sure where to start. Having the rabbitmq server in this config is not ideal so we would like to go back to using the cifs storage so the service can move with the swarm for HA. However we are reluctant to do so and have the same issue happen again.
I am a Sysadmin more than a developer so go easy on the new guy :)
Beta Was this translation helpful? Give feedback.
All reactions