When one creates Processes with multiprocessing library from python, the parent process waits for its children to return before it returns. In fact, the documentation recommends joining all children. But I would like to let the parent return before its child process finish.
Is there any way to "detach" the child process.
I know that using subprocess.Popen it is possible to create detached child processes, but i would like to use the features from multiprocessing library, like Queues, Locks and so.
I made two examples to show the difference.
The first example uses the multiprocessing library. When this script is called, it prints the parent message, waits 5 seconds, prints the child message and only then return.
# Using multiprocessing, only returns after 5 seconds
from multiprocessing import Process
from time import sleep, asctime
def child():
sleep(5.0)
print 'Child end reached on', asctime()
if __name__ == '__main__':
p = Process(target = child)
p.start()
# Detach child process here so parent can return.
print 'Parent end reached on', asctime()
The second example uses the subprocess.Popen. When this script is called, it prints the parent message, returns (!!!) and after 5 seconds prints the child message.
# Using Popen, returns immediately.
import sys
from subprocess import Popen
from time import sleep, asctime
def child():
sleep(5)
print 'Child end reached on', asctime()
if __name__ == '__main__':
if 'call_child' in sys.argv:
child()
else:
Popen([sys.executable] + [__file__] + ['call_child'])
print 'Parent end reached on', asctime()
The second example would be acceptable if I could pass Queues, Pipes, Locks, Semaphores, etc..
IMO, the first example also leads to a more cleaner code.
I'm using python 2.7 on Windows.