I'm using Python, Celery and RabbitMQ to produce messages from loosely coupled systems. However, I'm worried about interoperability.
When inspecting the message payload directly from RabbitMQ, that is produced by celery, I get the following binary format:
I strongly suspect that this is a binary pickle format. However, I'm having trouble finding information on the binary pickle format in general.
So, I really have a few questions:
- Is this a binary pickle format?
- What resources are available to map out the binary format?
- Given that celery does, in fact, produce pickled data, what options are available to me if I want to consume those messages from non-python consumers (such as c++ or php)?
- Do you have any experiences of working with Celery, RabbitMQ and interoperating with other consumers which are not python. Do you have any advice regarding that subject?
Thanks in advance...
UPDATE:
Based on Brendan's recommendation, I've switched this to a JSON serializer with:
add.apply_async(args=[10, 10], serializer="json")
For reference for future searchers, it appears that the JSON format, in this specific, empty case, is about 15% larger (or 28 bytes):
Also, for people that might be interested in reading the pickle format from c++, I found this question helpful: How can I read a python pickle database/file from C?
UPDATE 2:
Based on Asksol's recommendation, I tried out the zlib compression with:
async_result = add.apply_async( (x, y), compression='zlib' )
I thought there were some interesting results, so here they are:
As you can see in this example, the Pickle format is smaller than JSON. However, when compression is added to the mix, compressed JSON is actually smaller than either version of Pickle. I'm also curious about the parse times of either format. While JSON was designed to parser performant, Pickle is based on offsets, which means it wouldn't have to be iterated through. I wonder if anyone has done any performance benchmarks on the two formats, with and without compressions, and taking parsing CPU time into account.