Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

passing django request object to celery task

I have a task in tasks.py like so:

@app.task
def location(request):
....

I am trying to pass the request object directly from a few to task like so:

def tag_location(request):
    tasks.location.delay(request)
    return JsonResponse({'response': 1})

I am getting an error that it can't be serialized i guess? How do I fix this? trouble is I have file upload objects as well .. its not all simple data types.

like image 704
Tyler Avatar asked Jul 08 '15 21:07

Tyler


1 Answers

Because the request object contains references to things which aren't practical to serialize — like uploaded files, or the socket associated with the request — there's no general purpose way to serialize it.

Instead, you should just pull out and pass the portions of it that you need. For example, something like:

import tempfile

@app.task
def location(user_id, uploaded_file_path):
    # … do stuff …

def tag_location(request):
    with tempfile.NamedTemporaryFile(delete=False) as f:
        for chunk in request.FILES["some_file"].chunks():
            f.write(chunk)
    tasks.location.delay(request.user.id, f.name)
    return JsonResponse({'response': 1})
like image 99
David Wolever Avatar answered Sep 24 '22 11:09

David Wolever