Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Celery to run groups of thousands of tasks, where each task takes a few minutes to run. The code below is my simple drop-in replacement for multiprocessing.pool.Pool.map:

def map(task, data):
    """
    Perform the *task* on *data* in distributed way. Blocks until finished.
    """
    ret = celery_module.group(task.s(val) for val in data).apply_async()
    return ret.get(interval = 0.1)

This works like a charm as long as workers never break. But sometimes it happens that a node dies, taking a few running tasks with it. What happens then is that all other tasks finish, workers become idle, but the get waits forever for the results from the dead worker.

How to make the dead tasks retry after some timeout? The tasks are idempotent, I'm not worried at all about duplicate executions. I've tried toying with CELERY_ACKS_LATE and putting timeouts here and there, but nothing seemed to remedy this situation. I feel that I missed something obvious, but can't find what.

Edit: the transport used, both for broker and results, is Redis.

share|improve this question

1 Answer

The correct behavior here would be to set timeout and when that dies retry whole map task.

share|improve this answer
I'm not sure if re-running computations that took a few hours on around a hundred cores because something that would take a few minutes failed is actually "correct behavior"... – lRem Nov 25 '12 at 13:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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