Hi Esteban,
You should not send messages that large through RabbitMQ. If you have the option to compress the message, you should do that. Otherwise, store the message in a different system and pass a "pointer" (like a URI) to the message through RabbitMQ.
If you absolutely must send a message that large, you can increase the max message size to 512MiB in /etc/rabbitmq/rabbitmq.conf
max_message_size = 536870912
You will have to restart RabbitMQ after creating that file.
Thanks,
Luke