Here's my setup:

  • django 1.3
  • celery 2.2.6
  • django-celery 2.2.4
  • djkombu 0.9.2

In my settings.py file I have

BROKER_BACKEND = "djkombu.transport.DatabaseTransport"

i.e. I'm just using the database to queue tasks.

Now on to my problem: I have a user-initiated task that could take a few minutes to complete. I want the task to only run once per user, and I will cache the results of the task in a temporary file so if the user initiates the task again I just return the cached file. I have code that looks like this in my view function:

task_id = "long-task-%d" % user_id
result = tasks.some_long_task.AsyncResult(task_id)

if result.state == celery.states.PENDING:
    # The next line makes a duplicate task if the user rapidly refreshes the page
    tasks.some_long_task.apply_async(task_id=task_id)
    return HttpResponse("Task started...")
elif result.state == celery.states.STARTED:
    return HttpResponse("Task is still running, please wait...")
elif result.state == celery.states.SUCCESS:
    if cached_file_still_exists():
        return get_cached_file()
    else:
        result.forget()
        tasks.some_long_task.apply_async(task_id=task_id)
        return HttpResponse("Task started...")

This code almost works. But I'm running into a problem when the user rapidly reloads the page. There's a 1-3 second delay between when the task is queued and when the task is finally pulled off the queue and given to a worker. During this time, the task's state remains PENDING which causes the view logic to kick off a duplicate task.

What I need is some way to tell if the task has already been submitted to the queue so I don't end up submitting it twice. Is there a standard way of doing this in celery?

link|improve this question

Can kick_off_the_long_task_again() check to be sure the task moved out of Pending? If so, that may be a sufficient delay to prevent the race condition between user and celery. – S.Lott May 4 '11 at 19:19
kick_off_the_long_task_again() doesn't result in a duplicate task. I updated my example to show where the code will make a duplicate task. – cwick May 4 '11 at 19:34
That wasn't my question. Can kick_off_the_long_task_again() check and wait to be sure the task moved out of Pending before completing? – S.Lott May 4 '11 at 19:42
well, sure, but that wouldn't seem to accomplish anything. result.forget() deletes the results and puts the task back into PENDING, so we "know" the state already, barring another unlikely race condition. I would like to solve my original problem first before thinking about the smaller edge cases. – cwick May 4 '11 at 19:53
If the Pending state can't be seen (because you waited until it was passed), then your problem is solved, right? Or is there something else going on? – S.Lott May 4 '11 at 19:55
feedback

2 Answers

up vote 1 down vote accepted

You can cheat a bit by storing the result manually in the database. Let me explain how this will help.

For example, if using RDBMS (table with columns - task_id, state, result):

View part:

  1. Use transaction management.
  2. Use SELECT FOR UPDATE to get row where task_id == "long-task-%d" % user_id. SELECT FOR UPDATE will block other requests until this one COMMITs or ROLLBACKs.
  3. If it doesn't exist - set state to PENDING and start the 'some_long_task', end the request.
  4. If the state is PENDING - inform the user.
  5. If the state is SUCCESS - set state to PENDING, start the task, return the file pointed to by 'result' column. I base this on the assumption, that you want to re-run the task on getting the result. COMMIT
  6. If the state is ERROR - set state to PENDING, start the task, inform the user. COMMIT

Task part:

  1. Prepare the file, wrap in try, catch block.
  2. On success - UPDATE the proper row with state = SUCCESS, result.
  3. On failure - UPDATE the proper row with state = ERROR.
link|improve this answer
feedback

I solved this with Redis. Just set a key in redis for each task and then remove the key from redis in task's after_return method. Redis is lightweight and fast.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.