Python multiprocessing: sharing a large read-only object between processes? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T18:32:30Z http://stackoverflow.com/feeds/question/659865 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/659865/python-multiprocessing-sharing-a-large-read-only-object-between-processes 7 Python multiprocessing: sharing a large read-only object between processes? Parand 2009-03-18T19:58:46Z 2009-03-19T13:51:10Z <p>Do child processes spawned via <a href="http://docs.python.org/library/multiprocessing.html" rel="nofollow">multiprocessing</a> share objects created earlier in the program?</p> <p>I have the following setup:</p> <pre><code>do_some_processing(filename): for line in file(filename): if line.split(',')[0] in big_lookup_object: # something here if __name__ == '__main__': big_lookup_object = marshal.load('file.bin') pool = Pool(processes=4) print pool.map(do_some_processing, glob.glob('*.data')) </code></pre> <p>I'm loading some big object into memory, then creating a pool of workers that need to make use of that big object. The big object is accessed read-only, I don't need to pass modifications of it between processes.</p> <p>My question is: is the big object loaded into shared memory, as it would be if I spawned a process in unix/c, or does each process load its own copy of the big object? </p> <p>Update: to clarify further - big_lookup_object is a shared lookup object. I don't need to split that up and process it separately. I need to keep a single copy of it. The work that I need to split it is reading lots of other large files and looking up the items in those large files against the lookup object.</p> <p>Further update: database is a fine solution, memcached might be a better solution, and file on disk (shelve or dbm) might be even better. In this question I was particularly interested in an in memory solution. For the final solution I'll be using hadoop, but I wanted to see if I can have a local in-memory version as well.</p> http://stackoverflow.com/questions/659865/python-multiprocessing-sharing-a-large-read-only-object-between-processes/659888#659888 8 Answer by S.Lott for Python multiprocessing: sharing a large read-only object between processes? S.Lott 2009-03-18T20:06:08Z 2009-03-19T13:51:10Z <p>"Do child processes spawned via multiprocessing share objects created earlier in the program?"</p> <p>No. </p> <p>Processes have independent memory space.</p> <p><strong>Solution 1</strong></p> <p>To make best use of a large structure with lots of workers, do this.</p> <ol> <li><p>Write each worker as a "filter" -- reads intermediate results from stdin, does work, writes intermediate results on stdout.</p></li> <li><p>Connect all the workers as a pipeline:</p> <pre><code>process1 &lt;source | process2 | process3 | ... | processn &gt;result </code></pre></li> </ol> <p>Each process reads, does work and writes.</p> <p>This is remarkably efficient since all processes are running concurrently. The writes and reads pass directly through shared buffers between the processes.</p> <p><hr /></p> <p><strong>Solution 2</strong></p> <p>In some cases, you have a more complex structure -- often a "fan-out" structure. In this case you have a parent with multiple children.</p> <ol> <li><p>Parent opens source data. Parent forks a number of children.</p></li> <li><p>Parent reads source, farms parts of the source out to each concurrently running child.</p></li> <li><p>When parent reaches the end, close the pipe. Child gets end of file and finishes normally.</p></li> </ol> <p>The child parts are pleasant to write because each child simply reads <code>sys.sydin</code>. </p> <p>The parent has a little bit of fancy footwork in spawning all the children and retaining the pipes properly, but it's not too bad.</p> <p>Fan-in is the opposite structure. A number of independently running processes need to interleave their inputs into a common process. The collector is not as easy to write, since it has to read from many sources. </p> <p>Reading from many named pipes is often done using the <code>select</code> module to see which pipes have pending input.</p> <p><hr /></p> <p><strong>Solution 3</strong></p> <p>Shared lookup is the definition of a database. </p> <p>Solution 3A -- load a database. Let the workers process the data in the database.</p> <p>Solution 3B -- create a very simple server using <a href="http://werkzeug.pocoo.org/" rel="nofollow">werkzeug</a> (or similar) to provide WSGI applications that respond to HTTP GET so the workers can query the server.</p> <p><hr /></p> <p><strong>Solution 4</strong></p> <p>Shared filesystem object. Unix OS offers shared memory objects. These are just files that are mapped to memory so that swapping I/O is done instead of more convention buffered reads.</p> <p>You can do this from a Python context in several ways</p> <ol> <li><p>Write a startup program that (1) breaks your original gigantic object into smaller objects, and (2) starts workers, each with a smaller object. The smaller objects could be pickled Python objects to save a tiny bit of file reading time.</p></li> <li><p>Write a startup program that (1) reads your original gigantic object and writes a page-structured, byte-coded file using <code>seek</code> operations to assure that individual sections are easy to find with simple seeks. This is what a database engine does -- break the data into pages, make each page easy to locate via a <code>seek</code>.</p> <p>Spawn workers with access this this large page-structured file. Each worker can seek to the relevant parts and do their work there.</p></li> </ol> http://stackoverflow.com/questions/659865/python-multiprocessing-sharing-a-large-read-only-object-between-processes/659913#659913 1 Answer by Vasil for Python multiprocessing: sharing a large read-only object between processes? Vasil 2009-03-18T20:14:54Z 2009-03-18T20:14:54Z <p>Different processes have different address space. Like running different instances of the interpreter. That's what IPC (interprocess communication) is for.</p> <p>You can use either queues or pipes for this purpose. You can also use rpc over tcp if you want to distribute the processes over a network later.</p> <p><a href="http://docs.python.org/dev/library/multiprocessing.html#exchanging-objects-between-processes" rel="nofollow">http://docs.python.org/dev/library/multiprocessing.html#exchanging-objects-between-processes</a></p> http://stackoverflow.com/questions/659865/python-multiprocessing-sharing-a-large-read-only-object-between-processes/660024#660024 3 Answer by Jacob Gabrielson for Python multiprocessing: sharing a large read-only object between processes? Jacob Gabrielson 2009-03-18T20:44:52Z 2009-03-18T20:44:52Z <p>If you're running under Unix, they may share the same object, due to <a href="http://unixfaq.blogspot.com/2008/08/whats-difference-between-fork-and-vfork.html" rel="nofollow">how fork works</a> (i.e., the child processes have separate memory but it's copy-on-write, so it may be shared as long as nobody modifies it). I tried the following:</p> <pre><code>import multiprocessing x = 23 def printx(y): print x, id(x) print y if __name__ == '__main__': pool = multiprocessing.Pool(processes=4) pool.map(printx, (1,2,3,4)) </code></pre> <p>and got the following output:</p> <pre> $ ./mtest.py 23 22995656 1 23 22995656 2 23 22995656 3 23 22995656 4 </pre> <p>Of course this doesn't <em>prove</em> that a copy hasn't been made, but you should be able to verify that in your situation by looking at the output of <code>ps</code> to see how much real memory each subprocess is using.</p> http://stackoverflow.com/questions/659865/python-multiprocessing-sharing-a-large-read-only-object-between-processes/660026#660026 2 Answer by Jarret Hardie for Python multiprocessing: sharing a large read-only object between processes? Jarret Hardie 2009-03-18T20:45:37Z 2009-03-18T20:45:37Z <p><a href="http://stackoverflow.com/questions/659865/python-multiprocessing-sharing-a-large-read-only-object-between-processes/659888#659888">S.Lott</a> is correct. Python's multiprocessing shortcuts effectively give you a separate, duplicated chunk of memory.</p> <p>On most *nix systems, using a lower-level call to <code>os.fork()</code> will, in fact, give you copy-on-write memory, which might be what you're thinking. AFAIK, in theory, in the most simplistic of programs possible, you could read from that data without having it duplicated.</p> <p>However, things aren't quite that simple in the Python interpreter. Object data and meta-data are stored in the same memory segment, so even if the object is never changes, something like a reference counter for that object being incremented will cause a memory write, and therefore a copy. Almost any Python program that is doing more than "print 'hello'" will cause reference count increments, so you will likely never realize the benefit of copy-on-write.</p> <p>Even if someone did manage to hack a shared-memory solution in Python, trying to coordinate garbage collection across processes would probably be pretty painful.</p> http://stackoverflow.com/questions/659865/python-multiprocessing-sharing-a-large-read-only-object-between-processes/660215#660215 1 Answer by Steven for Python multiprocessing: sharing a large read-only object between processes? Steven 2009-03-18T21:35:08Z 2009-03-18T21:35:08Z <p>Not directly related to multiprocessing per se, but from your example, it would seem you could just use the <a href="http://docs.python.org/library/shelve.html" rel="nofollow">shelve</a> module or something like that. Does the "big_lookup_object" really have to be completely in memory?</p> http://stackoverflow.com/questions/659865/python-multiprocessing-sharing-a-large-read-only-object-between-processes/660468#660468 4 Answer by J.F. Sebastian for Python multiprocessing: sharing a large read-only object between processes? J.F. Sebastian 2009-03-18T23:17:12Z 2009-03-19T00:23:55Z <h3>Do child processes spawned via multiprocessing share objects created <em>earlier</em> in the program?</h3> <p>It depends. For global read-only variables it can be often considered so (apart from the memory consumed) else it should not. </p> <p><a href="http://docs.python.org/dev/library/multiprocessing.html#multiprocessing-programming" rel="nofollow">multiprocessing</a>'s documentation says:</p> <p><code>Better to inherit than pickle/unpickle</code></p> <blockquote> <p>On Windows many types from multiprocessing need to be picklable so that child processes can use them. However, one should generally avoid sending shared objects to other processes using pipes or queues. Instead you should arrange the program so that a process which need access to a shared resource created elsewhere can inherit it from an ancestor process.</p> </blockquote> <p><code>Explicitly pass resources to child processes</code></p> <blockquote> <p>On Unix a child process can make use of a shared resource created in a parent process using a global resource. However, it is better to pass the object as an argument to the constructor for the child process.</p> <p>Apart from making the code (potentially) compatible with Windows this also ensures that as long as the child process is still alive the object will not be garbage collected in the parent process. This might be important if some resource is freed when the object is garbage collected in the parent process.</p> </blockquote> <p><code>Global variables</code></p> <blockquote> <p>Bear in mind that if code run in a child process tries to access a global variable, then the value it sees (if any) may not be the same as the value in the parent process at the time that Process.start() was called.</p> </blockquote> <h3>Example</h3> <p>On Windows (single CPU):</p> <pre><code>#!/usr/bin/env python import os, sys, time from multiprocessing import Pool x = 23000 # replace `23` due to small integers share representation z = [] # integers are immutable, let's try mutable object def printx(y): global x if y == 3: x = -x z.append(y) print os.getpid(), x, id(x), z, id(z) print y if len(sys.argv) == 2 and sys.argv[1] == "sleep": time.sleep(.1) # should make more apparant the effect if __name__ == '__main__': pool = Pool(processes=4) pool.map(printx, (1,2,3,4)) </code></pre> <p>With <code>sleep</code>:</p> <pre><code>$ python26 test_share.py sleep 2504 23000 11639492 [1] 10774408 1 2564 23000 11639492 [2] 10774408 2 2504 -23000 11639384 [1, 3] 10774408 3 4084 23000 11639492 [4] 10774408 4 </code></pre> <p>Without <code>sleep</code>:</p> <pre><code>$ python26 test_share.py 1148 23000 11639492 [1] 10774408 1 1148 23000 11639492 [1, 2] 10774408 2 1148 -23000 11639324 [1, 2, 3] 10774408 3 1148 -23000 11639324 [1, 2, 3, 4] 10774408 4 </code></pre>