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!
|
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! |
|||
|
|
|
Have a look at celery. |
|||
|
If you use the multiprocessing package, every child process has If you're on POSIX system, you can also catch SIGCHLD (using |
|||
|
|
|
This will help http://docs.python.org/library/multiprocessing.html edit : a good tutorial http://www.ibm.com/developerworks/aix/library/au-multiprocessing/ |
|||
|
|