I have a python client and a symfony backend. They can send and receive messages using rabbitmq.
I use rabbitmq symfony bundle on my backend.
I send an id of a php entity to the python client which get i through my api, do some work (heavy work) and store the result in a zip file. I want to send this zip file through rabbitmq. Is it possible? The file is really large (like 5mo)
If it's possible how can i do it ? (in an efficient way)