0

I have a "master" process that needs to spawn some child processes.

How can I manage these child processes? (for example, restart if the process is dead)

Thanks!

3 Answers 3

4

Have a look at celery.

Sign up to request clarification or add additional context in comments.

2 Comments

You are a god among men. Thanks for saving me a weekend.
@Jordan, that is the best comment ever posted to Stack Overflow.
3

If you use the multiprocessing package, every child process has is_alive method you can check. So one option to to hold a list of all running processes and periodically check is_alive and re-spawn dead processes.

If you're on POSIX system, you can also catch SIGCHLD (using signal) and get notified when a child process dies.

Comments

1

This will help http://docs.python.org/library/multiprocessing.html

edit : a good tutorial http://www.ibm.com/developerworks/aix/library/au-multiprocessing/

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.