I am considering going to RabbitMQ from MSMQ.
I was playing around it with and wanted to see the messages in the queue (usually easy with MSMQ).
It is a bit harder with RabbitMQ, but I made it work. But the help text says:
Furthermore, message payloads will be truncated to 50000 bytes.
That is less that 0.05 MB! My payloads are much much larger than that.
So here is my question, does it truncate just for viewing, or for the message that is put back in the queue too?
Also, can this limit be configured? When debugging, I would frequently need to see the full message.