I have a celery chain that has multiple tasks, one of which is extracting a tar file and returning the JSON found within that tar file. At completion of the chain, pylibmc
raises error 37 from memcached_set: SUCCESS
which means that the memcached value associated with that task key is greater than 1MB.
This error does not interfere with the data integrity of the chain, but I'd really prefer to not be writing this data to the cache since it will never actually be used again.
I looked through the Celery documentation, but found nothing that would help with disabling the cache on a specific task. Any assistance would be appreciated.