active questions tagged multiprocessing - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T07:40:53Z http://stackoverflow.com/feeds/tag/multiprocessing http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/641420/how-should-i-log-while-using-multiprocessing-in-python 12 How should I log while using multiprocessing in Python? cdleary 2009-03-13T04:02:31Z 2009-11-24T16:46:29Z <p>Right now I have a central module in a framework that spawns multiple processes using the Python 2.6 <a href="http://docs.python.org/library/multiprocessing.html?#module-multiprocessing" rel="nofollow"><code>multiprocessing</code> module</a>. Because it uses <code>multiprocessing</code>, there is module-level multiprocessing-aware log, <code>LOG = multiprocessing.get_logger()</code>. Per <a href="http://docs.python.org/library/multiprocessing.html#logging" rel="nofollow">the docs</a>, this logger has process-shared locks so that you don't garble things up in <code>sys.stderr</code> (or whatever filehandle) by having multiple processes writing to it simultaneously.</p> <p>The issue I have now is that the other modules in the framework are not multiprocessing-aware. The way I see it, I need to make all dependencies on this central module use multiprocessing-aware logging. That's annoying <em>within</em> the framework, let alone for all clients of the framework. Are there alternatives I'm not thinking of?</p> http://stackoverflow.com/questions/1473625/python-multiprocessing-manager-composite-pattern-sharing 0 python multiprocessing manager & composite pattern sharing DrFalk3n 2009-09-24T19:14:06Z 2009-11-22T20:00:03Z <p>I'm trying to share a composite structure through a multiprocessing manager but I felt in trouble with a "<strong>RuntimeError: maximum recursion depth exceeded</strong>" when trying to use just one of the Composite class methods.</p> <p>The class is token from <a href="http://code.activestate.com/recipes/498249/#clast" rel="nofollow">code.activestate</a> and tested by me before inclusion into the manager.</p> <p>When retrieving the class into a process and invoking its <strong>addChild()</strong> method I kept the <strong>RunTimeError</strong>, while outside the process it works.</p> <p>The composite class inheritates from a SpecialDict class, that implements a ** <strong>__getattr()__</strong> ** method. </p> <p>Could be possible that while calling <strong>addChild()</strong> the interpreter of python looks for a different ** <strong>__getattr()__</strong> ** because the right one is not proxied by the manager?</p> <p>If so It's not clear to me the right way to make a proxy to that class/method</p> <p>The following code reproduce exactly this condition:</p> <p>1) this is the manager.py:</p> <pre><code>from multiprocessing.managers import BaseManager from CompositeDict import * class PlantPurchaser(): def __init__(self): self.comp = CompositeDict('Comp') def get_cp(self): return self.comp class Manager(): def __init__(self): self.comp = QueuePurchaser().get_cp() BaseManager.register('get_comp', callable=lambda:self.comp) self.m = BaseManager(address=('127.0.0.1', 50000), authkey='abracadabra') self.s = self.m.get_server() self.s.serve_forever() </code></pre> <p>2) I want to use the composite into this consumer.py:</p> <pre><code>from multiprocessing.managers import BaseManager class Consumer(): def __init__(self): BaseManager.register('get_comp') self.m = BaseManager(address=('127.0.0.1', 50000), authkey='abracadabra') self.m.connect() self.comp = self.m.get_comp() ret = self.comp.addChild('consumer') </code></pre> <p>3) run all launching by a controller.py:</p> <pre><code>from multiprocessing import Process class Controller(): def __init__(self): for child in _run_children(): child.join() def _run_children(): from manager import Manager from consumer import Consumer as Consumer procs = ( Process(target=Manager, name='Manager' ), Process(target=Consumer, name='Consumer'), ) for proc in procs: proc.daemon = 1 proc.start() return procs c = Controller() </code></pre> <p>Take a look this <a href="http://stackoverflow.com/questions/1486835">related questions</a> on how to do a proxy for CompositeDict() class as suggested by AlberT.</p> <p>The solution given by <strong>tgray</strong> works but cannot avoid race conditions</p> http://stackoverflow.com/questions/1754438/python-multiprocessing-db-access-is-very-slow 0 python multiprocessing db access is very slow. Rob 2009-11-18T08:26:21Z 2009-11-19T17:31:02Z <p>Hi</p> <p>I have GUI that will interact with a postgres database, using psycopg2. I have db connection in a multiprocessing process, and send SQL via a multiprocessing queue, and receive via another queue.</p> <p>The problem is that the speed is very very slow. A simple select * from a small table (30 rows) can be 1/10th of a second, or can take over one second. </p> <p>Does any one have any clues as to why it's so slow?</p> <p>New Information: It works fine on winxp, exact same code, so the intermittent delay is only happening on my linux box (ubuntu 9.10)</p> <p>More info: Having stubbed out the select it appears it's not the problem.</p> <p>Here is the main part of the db class.</p> <pre><code>class DataBase(multiprocessing.Process): def __init__(self, conn_data, in_queue, out_queue): multiprocessing.Process.__init__(self) self.in_queue = in_queue self.out_queue = out_queue self.conn_data = conn_data self.all_ok = True def run(self): proc_name = self.name self.conn = self.get_connection(self.conn_data) print("Running ", self.name) while True: next_job = self.in_queue.get() print("Next Job: ",next_job) if next_job is None: # Stop Process break SQL = next_job[0] callback = next_job[1] result = self.execute(SQL) self.out_queue.put((result, callback)) print("Closing connection ", self.name) self.conn.close() return </code></pre> <p>And in the GUI I have this:</p> <pre><code>def recieve_data(self): "Revived data on the queue. Data is a tuple of the actual data and a calback name." if self.recieve_queue.empty() == False: data = self.recieve_queue.get() callback_name = data[1] try: callback = getattr(self, callback_name) callback(data[0]) except AttributeError as e: util.error_ui(err = e) self.check_data_timeout = None return False # Stop checking. return True # Have the main loop keep checking for data. def request_data(self, SQL, callback): self.send_queue.put((SQL, callback)) self.check_data_timeout = gobject.timeout_add(50, self.recieve_data) # Poll the database recieved_queue </code></pre> http://stackoverflow.com/questions/1757388/detach-a-subprocess-started-using-python-multiprocessing-module 2 Detach a subprocess started using python multiprocessing module glenn 2009-11-18T16:48:38Z 2009-11-19T14:41:35Z <p>Hello, I would like to create a process using the mutliprocessing module in python but ensure it continues running after the process that created the subprocess exits. </p> <p>I can get the required functionality using the subprocess module and Popen, but I want to run my code as a function, not as a script. The reason I want to do this is to simplify creating pyro (python remote objects) objects. I want to start the pyro object request handler in a separate process using multiprocessing, but then I want the main process to exit while the process supporting the pyro object continues to run. Thank you, G</p> http://stackoverflow.com/questions/1743293/why-does-my-python-program-average-only-33-cpu-per-process-how-can-i-make-pytho 2 Why does my Python program average only 33% CPU per process? How can I make Python use all available CPU? AloneRoad 2009-11-16T16:33:15Z 2009-11-18T09:41:11Z <p>I use Python 2.5.4. My computer: CPU AMD <a href="http://en.wikipedia.org/wiki/AMD%5FPhenom#Phenom%5FX3" rel="nofollow">Phenom X3</a> 720BE, Mainboard 780G, 4GB RAM, Windows 7 32 bit. </p> <p>I use Python threading but can not make every python.exe process consume 100% CPU. Why are they using only about 33-34% on average?. </p> <p>I wish to direct all available computer resources toward these large calculations so as to complete them as quickly as possible.</p> http://stackoverflow.com/questions/1354204/any-body-familiar-with-how-i-can-implement-a-multiprocessing-priority-queue-in-py 1 any body familiar with how I can implement a multiprocessing priority queue in python? phroxy 2009-08-30T16:17:03Z 2009-11-17T16:43:45Z <p>any body familiar with how I can implement a multiprocessing priority queue in python?</p> http://stackoverflow.com/questions/1747963/multiprocessing-pool-inside-process-time-out 3 Multiprocessing Pool inside Process time out NeonNinja 2009-11-17T10:37:36Z 2009-11-17T11:49:40Z <p>When ever I use the following code the pool result always returns a timeout, is there something logically incorrect I am doing?</p> <pre><code>from multiprocessing import Pool, Process, cpu_count def add(num): return num+1 def add_wrap(num): new_num = ppool.apply_async(add, [num]) print new_num.get(timeout=3) ppool = Pool(processes=cpu_count() ) test = Process(target=add_wrap, args=(5,)).start() </code></pre> <p>I'm aware of <a href="http://bugs.python.org/issue5331" rel="nofollow">this bug</a>, and would have thought that it would have been fixed in python 2.6.4?</p> http://stackoverflow.com/questions/1739184/how-does-one-properly-use-the-unix-exec-c-command 1 How does one properly use the Unix exec C(++)-command? Stefan Kendall 2009-11-15T22:58:22Z 2009-11-16T02:11:17Z <p>Specifically, I need to call a version of exec that maintains the current working directory and sends standard out to the same terminal as the program calling exec. I also have a vector of string arguments I need to pass somehow, and I'm wondering how I would go about doing all of this. I've been told that all of this is possible exclusively with <strong>fork and exec</strong>, and given the terrible lack of documentation on the google, I've been unable to get the exec part working.</p> <p>What exec method am I looking for that can accomplish this, and how do I call it?</p> http://stackoverflow.com/questions/1675766/how-to-combine-pool-map-with-array-shared-memory-in-python-multiprocessing 2 How to combine Pool.map with Array (shared memory) in Python multiprocessing? James Dean 2009-11-04T18:32:20Z 2009-11-12T18:42:12Z <p>I have a very large (read only) array of data that I want to be processed by multiple processes in parallel.</p> <p>I like the Pool.map function and would like to use it to calculate functions on that data in parallel.</p> <p>I saw that one can use the Value or Array class to use shared memory data between processes. But when I try to use this I get a RuntimeError: 'SynchronizedString objects should only be shared between processes through inheritance when using the Pool.map function:</p> <p>Here is a simplified example of what I am trying to do:</p> <pre><code>from sys import stdin from multiprocessing import Pool, Array def count_it( arr, key ): count = 0 for c in arr: if c == key: count += 1 return count if __name__ == '__main__': testData = "abcabcs bsdfsdf gdfg dffdgdfg sdfsdfsd sdfdsfsdf" # want to share it using shared memory toShare = Array('c', testData) # this works print count_it( toShare, "a" ) pool = Pool() # RuntimeError here print pool.map( count_it, [(toShare,key) for key in ["a", "b", "s", "d"]] ) </code></pre> <p>Can anyone tell me what I am doing wrong here?</p> <p>So what i would like to do is pass info about a newly created shared memory allocated array to the processes after they have been created in the process pool.</p> http://stackoverflow.com/questions/1622388/running-code-on-different-processor-x86-assembly 4 Running code on different processor (x86 assembly) Rhys Bradshaw 2009-10-25T23:01:13Z 2009-10-26T11:50:14Z <p>In real mode on x86, what instructions would need to be used to run the code on a different processor, in a multiprocessor system?</p> <p>(I'm writing some pre-boot code in assembler that needs to set certain CPU registers, and do this on every CPU in the system, before the actual operating system boots.)</p> http://stackoverflow.com/questions/1475630/how-to-generate-pdb-files-for-parallel-builds 0 How to generate pdb files for parallel builds? Greg 2009-09-25T05:52:52Z 2009-10-20T14:28:33Z <p>We are seeking ideas on resolving a problem with linking/pdb generation when running multiple devenv.com using <a href="http://en.wikipedia.org/wiki/Microsoft%5FVisual%5FStudio#Visual%5FStudio%5F2005" rel="nofollow">Visual Studio 2005</a>.</p> <p>We are getting the following intermittently errors when doing parallel builds using devenv.com. I.e. when the following get run at the same time on the same build server:</p> <pre><code>devenv.com master.sln /build "Release|Win32" devenv.com master.sln /build "Debug|x64" fatal error LNK1318: Unexpected PDB error; RPC (23) '(0x000006BA)' error C2471: cannot update program database </code></pre> <p>We want the <a href="http://en.wikipedia.org/wiki/Program%5Fdatabase" rel="nofollow">pdb</a> files, so turning them off isn't realy an option. Running the builds serially doesn't cause the issue, but of course slows down the build process.</p> <p>References found so far indicate</p> <ul> <li>that there are issues with length of file names exceeding the 256 file path limit, this doesn't seem to be our problem as we can build individually, and the path+filename length is around 160 chars.</li> <li>there are issues with incremental builds (but mainly in Visual Studio 2008) and we have incremental linking turned off.</li> </ul> <p>We are looking for input on resolving this multiple process issue, if possible.</p> <p>How do we resolve it?</p> http://stackoverflow.com/questions/1586754/using-multiprocessing-pool-of-workers 0 Using multiprocessing pool of workers Gökhan Sever 2009-10-19T02:49:44Z 2009-10-19T02:49:44Z <p>Hello,</p> <p>I have the following code written to make my lazy second CPU core working. What the code does basically is first find the desired "sea" files in the directory hierarchy and later execute set of external scripts to process these binary "sea" files to produce 50 to 100 text and binary files in number. As the title of the question suggest in a paralleled fashion to increase the processing speed.</p> <p>This question originates from the long discussion that we have been having on IPython users list titled as "<a href="http://article.gmane.org/gmane.comp.python.ipython.user/4765" rel="nofollow">Cannot start ipcluster</a>". Starting with my experimentation on IPython's parallel processing functionalities. </p> <p>The issue is I can't get this code running correctly. If the folders that contain "sea" files only houses "sea" files the script finishes its execution without fully performing external script runs. (Say I have 30-50 external scripts to run, but my multiprocessing enabled script exhaust only after executing the first script in these external script chain.) Interestingly, if I run this script on an already processed folder (which is "sea" files processed beforehand and output files are already in that folder) then it runs, but this time I get speed-ups at about 2.4 to 2.7X with respect to linear processing timings. It is not very expected since I only have a Core 2 Duo 2.5 Ghz CPU in my laptop. Although I have a CUDA powered GPU it has nothing to do with my current parallel computing struggle :)</p> <p>What do you think might be source of this issue?</p> <p>Thank you for all comments and suggestions.</p> <pre><code>#!/usr/bin/env python from multiprocessing import Pool from subprocess import call import os def find_sea_files(): file_list, path_list = [], [] init = os.getcwd() for root, dirs, files in os.walk('.'): dirs.sort() for file in files: if file.endswith('.sea'): file_list.append(file) os.chdir(root) path_list.append(os.getcwd()) os.chdir(init) return file_list, path_list def process_all(pf): os.chdir(pf[0]) call(['postprocessing_saudi', pf[1]]) if __name__ == '__main__': pool = Pool(processes=2) # start 2 worker processes files, paths = find_sea_files() pathfile = [[paths[i],files[i]] for i in range(len(files))] pool.map(process_all, pathfile) </code></pre> http://stackoverflow.com/questions/1474052/synchronize-shell-script-execution 0 Synchronize shell script execution Dave Jarvis 2009-09-24T20:46:30Z 2009-10-19T02:24:07Z <p>A modified version of a <a href="http://www.sklav.com/?q=node/4" rel="nofollow">shell script</a> converts an audio file from FLAC to MP3 format. The computer has a quad-core CPU. The script is run using:</p> <pre><code>./flac2mp3.sh $(find flac -type f) </code></pre> <p>This converts the FLAC files in the <code>flac</code> directory (no spaces in file names) to MP3 files in the <code>mp3</code> directory (at the same level as <code>flac</code>). If the destination MP3 file already exists, the script skips the file.</p> <p>The problem is that sometimes two instances of the script check for the existence of the same MP3 file at nearly the same time, resulting in mangled MP3 files.</p> <p>How would you run the script multiple times (i.e., once per core), without having to specify a different file set on each command-line, and without overwriting work?</p> <p><strong>Update - Minimal Race Condition</strong></p> <p>The script uses the following locking mechanism:</p> <pre><code> # Convert FLAC to MP3 using tags from flac file. # if [ ! -e $FLAC.lock ]; then touch $FLAC.lock flac -dc "$FLAC" | lame${lame_opts} \ --tt "$TITLE" \ --tn "$TRACKNUMBER" \ --tg "$GENRE" \ --ty "$DATE" \ --ta "$ARTIST" \ --tl "$ALBUM" \ --add-id3v2 \ - "$MP3" rm $FLAC.lock fi; </code></pre> <p>However, this still leaves a race condition.</p> http://stackoverflow.com/questions/1486835/python-multiprocessing-proxy 1 python multiprocessing proxy DrFalk3n 2009-09-28T12:47:28Z 2009-10-19T01:41:04Z <p>I have a 2 processes:</p> <p>the first process is <strong>manager.py</strong> starts in <strong>backgroung</strong>:</p> <pre><code>from multiprocessing.managers import SyncManager, BaseProxy from CompositeDict import * class CompositeDictProxy(BaseProxy): _exposed_ = ('addChild', 'setName') def addChild(self, child): return self._callmethod('addChild', [child]) def setName(self, name): return self._callmethod('setName', [name]) class Manager(SyncManager): def __init__(self): super(Manager, self).__init__(address=('127.0.0.1', 50000), authkey='abracadabra') def start_Manager(): Manager().get_server().serve_forever() if __name__=="__main__": Manager.register('get_plant', CompositeDict, proxytype=CompositeDictProxy) start_Manager() </code></pre> <p><hr /></p> <p>and the second is <strong>consumer.py</strong> supposed to use registered objects defined into the manager:</p> <pre><code>from manager import * import time import random class Consumer(): def __init__(self): Manager.register('get_plant') m = Manager() m.connect() plant = m.get_plant() #plant.setName('alfa') plant.addChild('beta') if __name__=="__main__": Consumer() </code></pre> <p><hr /></p> <p>Running the <strong>manager</strong> in background, and than the <strong>consumer</strong> I get the error message: <strong><em>RuntimeError: maximum recursion depth exceeded</em></strong>, when using <strong>addChild</strong> into the <strong>consumer</strong>, while I can correctly use <strong>setName</strong>.</p> <p>Methods <strong>addChild</strong> and <strong>setName</strong> belongs to <strong>CompositeDict</strong>, I suppose to be proxied.</p> <p>What's wrong? </p> <p><strong>CompositeDict</strong> overwrites native <strong>__getattr__**</strong> method and is involved in the error message. I suppose, in some way, it's not used the right one <strong>__getattr__</strong> method. If so how could I solve this problem?? </p> <p><hr /></p> <p>The detailed error message is:</p> <pre><code>Traceback (most recent call last): File "consumer.py", line 21, in &lt;module&gt; Consumer() File "consumer.py", line 17, in __init__ plant.addChild('beta') File "&lt;string&gt;", line 2, in addChild File "/usr/lib/python2.5/site-packages/multiprocessing-2.6.1.1-py2.5-linux-i686.egg/multiprocessing/managers.py", line 729, in _callmethod kind, result = conn.recv() File "/home/--/--/CompositeDict.py", line 99, in __getattr__ child = self.findChild(name) File "/home/--/--/CompositeDict.py", line 185, in findChild for child in self.getAllChildren(): File "/home/--/--/CompositeDict.py", line 167, in getAllChildren l.extend(child.getAllChildren()) File "/home/--/--/CompositeDict.py", line 165, in getAllChildren for child in self._children: File "/home/--/--/CompositeDict.py", line 99, in __getattr__ child = self.findChild(name) File "/home/--/--/CompositeDict.py", line 185, in findChild for child in self.getAllChildren(): File "/--/--/prove/CompositeDict.py", line 165, in getAllChildren for child in self._children: ... File "/home/--/--/CompositeDict.py", line 99, in __getattr__ child = self.findChild(name) File "/home/--/--/CompositeDict.py", line 185, in findChild for child in self.getAllChildren(): RuntimeError: maximum recursion depth exceeded </code></pre> http://stackoverflow.com/questions/1407988/multiprocessor-scheduling-algorithm 1 Multiprocessor Scheduling Algorithm Sorantis 2009-09-10T22:07:01Z 2009-10-19T01:40:29Z <p>Hi, I'm searching for a Sequential implementation of multiprocessor scheduling algorithm, preferably implemented in c++, or c. Any suggestions are welcome.</p> http://stackoverflow.com/questions/1293652/accept-with-sockets-shared-between-multiple-processes-based-on-apache-preforki 0 accept() with sockets shared between multiple processes (based on Apache preforking) dalke 2009-08-18T12:55:46Z 2009-10-18T22:32:47Z <p>I'm working on some Python code modeled on Apache's MPM prefork server. I am more an applications programmer than a network programmer and it's been 10 years since I read Stevens, so I'm trying to get up to speed in understanding the code.</p> <p>I found a short description of <a href="http://mail-archives.apache.org/mod%5Fmbox/httpd-users/200905.mbox/%3C94CBEFB7-B785-44A9-8324-241F32890836@apache.org%3E" rel="nofollow">how Apache's prefork code works, by Sander Temme</a>.</p> <blockquote> <p>The parent process, which typically runs as root, binds to a socket (usually port 80 or 443). It spawns children, which inherit the open file descriptor for the socket, and change uid and gid to the unprivileged user and group. The children construct a pollset of the listener file descriptors (if there is more than one listener) and watch for activity on it/them. If activity is found, the child calls accept() on the active socket and handles the connection. When it is done with that, it returns to watching the pollset (or listener file descriptor).</p> <p>Since multiple children are active and they all inherited the same socket file descriptor(s), they will be watching the same pollset. An accept mutex allows only a single child to actually watch the pollset, and once that has found an active socket it will unlock the mutex so the next child can start watching the pollset. If there is only a single listener, that accept mutex is not used and all children will hang in accept().</p> </blockquote> <p>This is pretty much the way the code I'm looking at works, but I don't understand a few things. </p> <p>1) What is the difference between a "child" and a "listener"? I thought each child is a listener, which is true for the code I'm looking at, but in Temme's description there can be "a single listener" and "children." When would a child have multiple listeners?</p> <p>2) (Related to 1) Is this a per-process mutex or a system mutex? For that matter, why have a mutex? Doesn't accept(2) do its own mutex across all listeners? My research says I do need a mutex and that the mutex must be across the entire system. (flock, semaphore, etc.)</p> <p>Temme goes on to say:</p> <blockquote> <p>Children record in a shared memory area (the scoreboard) when they last served a request. Idle children may be killed by the parent process to satisfy MaxSpareServers. If too few children are idle, the parent will spawn children to satisfy MinSpareServers.</p> </blockquote> <p>3) Is there a good reference code for this implementation (preferably in Python)? I found Perl's <a href="http://httpd.apache.org/docs/2.0/mod/prefork.html" rel="nofollow">Net::Server::Prefork</a>, which uses pipes instead of shared memory for the scoreboard. I found an article by <a href="http://www.stonehenge.com/merlyn/WebTechniques/col34.html" rel="nofollow">Randal Schwartz</a> which only does the preforking but doesn't do the scoreboard.</p> <p>The <a href="http://pleac.sourceforge.net/include/perl/ch17/preforker" rel="nofollow">pre-fork example from the Perl Cookbook</a> does not have any sort of locking around select, and <a href="http://utcc.utoronto.ca/~cks/programs/python/prefork.py" rel="nofollow">Chris Siebenmann's Python example</a> says it's based on Apache but uses paired sockets for the scoreboard, not shared memory, and use the sockets for controls, include the control for a given child to 'a'ccept. This does not match the Apache description at all.</p> http://stackoverflow.com/questions/1575985/python-on-multiprocessor-machines-multiprocessing-or-a-non-gil-interpreter 1 Python on multiprocessor machines: multiprocessing or a non-GIL interpreter pythonic metaphor 2009-10-16T01:10:27Z 2009-10-16T02:09:34Z <p>This is more a style question. For CPU bound processes that really benefit for having multiple cores, do you typically use the multiprocessing module or use threads with an interpreter that doesn't have the GIL? I've used the multiprocessing library only lightly, but also have no experience with anything besides CPython. I'm curious what the preferred approach is and if it is to use a different interpreter, which one.</p> http://stackoverflow.com/questions/1575067/python-multiprocessing-restrict-number-of-cores-used 2 Python multiprocessing: restrict number of cores used abalter 2009-10-15T21:04:33Z 2009-10-15T23:50:03Z <p>I want to know how to distribute N independent tasks to exactly M processors on a machine that has L cores, where L>M. I don't want to use all the processors because I still want to have I/O available. The solutions I've tried seem to get distributed to all processors, bogging down the system.</p> <p>I assume the multiprocessing module is the way to go.</p> <p>I do numerical simulations. My background is in physics, not computer science, so unfortunately, I often don't fully understand discussions involving standard tasking models like server/client, producer/consumer, etc.</p> <p>Here are some simplified models that I've tried:</p> <p>Suppose I have a function <code>run_sim(**kwargs)</code> (see that further below) that runs a simulation, and a long list of kwargs for the simulations, and I have an 8 core machine.</p> <pre><code>from multiprocessing import Pool, Process #using pool p = Pool(4) p.map(run_sim, kwargs) # using process number_of_live_jobs=0 all_jobs=[] sim_index=0 while sim_index &lt; len(kwargs)+1: number_of_live_jobs = len([1 for job in all_jobs if job.is_alive()]) if number_of_live_jobs &lt;= 4: p = Process(target=run_sim, args=[], kwargs=kwargs[sim_index]) print "starting job", kwargs[sim_index]["data_file_name"] print "number of live jobs: ", number_of_live_jobs p.start() p.join() all_jobs.append(p) sim_index += 1 </code></pre> <p>When I look at the processor usage with "top" and then "1", All processors seem to get used anyway in either case. It is not out of the question that I am misinterpreting the output of "top", but if the <code>run_simulation()</code> is processor intensive, the machine bogs down heavily.</p> <p>Hypothetical simulation and data:</p> <pre><code># simulation kwargs numbers_of_steps = range(0,10000000, 1000000) sigmas = [x for x in range(11)] kwargs = [] for number_of_steps in numbers_of_steps: for sigma in sigmas: kwargs.append( dict( number_of_steps=number_of_steps, sigma=sigma, # why do I need to cast to int? data_file_name="walk_steps=%i_sigma=%i" % (number_of_steps, sigma), ) ) import random, time random.seed(time.time()) # simulation of random walk def run_sim(kwargs): number_of_steps = kwargs["number_of_steps"] sigma = kwargs["sigma"] data_file_name = kwargs["data_file_name"] data_file = open(data_file_name+".dat", "w") current_position = 0 print "running simulation", data_file_name for n in range(int(number_of_steps)+1): data_file.write("step number %i position=%f\n" % (n, current_position)) random_step = random.gauss(0,sigma) current_position += random_step data_file.close() </code></pre> http://stackoverflow.com/questions/1353055/rpc-for-multiprocessing-design-issues 0 RPC for multiprocessing, design issues phroxy 2009-08-30T04:09:23Z 2009-10-14T21:57:29Z <p>Hey everyone, what's a good way to do rpc across multiprocessing.Process'es ?</p> <p>I am also open to design advise on the following architecture: Process A * 10, Process B * 1. Each process A has to check with proces B on whether a particular item needs to be queried. </p> <p>So I was thinking of implementing multiprocessing.Pipe() object for all the As, and then have B listen to each of them. However, I realize that Multiprocessing.Pipe.recv is BLOCKING. so I don't really know how I can go about doing this. (if I use a loop to check which one has things sent through the other end that the loop will be blocked).</p> <p>There are suggestions for me to use twisted, but I am not sure how I should go about doing this in twisted: Should I create a defer on each pipe.handler from all the processes A and then when recv() receives something it goes on and complete a certain routine? I know personally twisted does not mix well with multiprocessing, but I have done some testing on twisted that are child processes of an multiprocessing implementation and I think this time it's workable.</p> <p>Any recommendations?</p> http://stackoverflow.com/questions/1448598/interlockedincrement-vs 0 InterlockedIncrement vs. ++ Jeff V 2009-09-19T13:59:13Z 2009-10-13T18:42:02Z <p>How does InterlockedIncrement work? </p> <p>Is the concern only on multi-processor systems?</p> <p>What does it do, disable interrupts across all processors?</p> http://stackoverflow.com/questions/1559125/string-arguments-in-python-multiprocessing 1 String arguments in python multiprocessing abalter 2009-10-13T09:27:27Z 2009-10-13T09:33:44Z <p>I'm trying to pass a string argument to a target function in a process. Somehow, the string is interpreted as a list of as many arguments as there are characters.</p> <p>This is the code:</p> <pre><code>import multiprocessing def write(s): print s write('hello') p = multiprocessing.Process(target=write, args=('hello')) p.start() </code></pre> <p>I get this output:</p> <pre><code>hello Process Process-1: Traceback (most recent call last): &gt;&gt;&gt; File "/usr/local/lib/python2.5/site-packages/multiprocessing/process.py", line 237, in _bootstrap self.run() File "/usr/local/lib/python2.5/site-packages/multiprocessing/process.py", line 93, in run self._target(*self._args, **self._kwargs) TypeError: write() takes exactly 1 argument (5 given) &gt;&gt;&gt; </code></pre> <p>What am I doing wrong? How am I supposed to pass a stringn?</p> <p>Thanks, Ariel</p> http://stackoverflow.com/questions/1540822/dumping-a-multiprocessing-queue-into-a-list 0 Dumping a multiprocessing.Queue into a list cool-RR 2009-10-08T22:17:37Z 2009-10-09T00:44:24Z <p>I wish to dump a <code>multiprcoessing.Queue</code> into a list. For that task I've written the following function:</p> <pre><code>import Queue def dump_queue(queue): """ Empties all pending items in a queue and returns them in a list. """ result = [] # START DEBUG CODE initial_size = queue.qsize() print("Queue has %s items initially." % initial_size) # END DEBUG CODE while True: try: thing = queue.get(block=False) result.append(thing) except Queue.Empty: # START DEBUG CODE current_size = queue.qsize() total_size = current_size + len(result) print("Dumping complete:") if current_size == initial_size: print("No items were added to the queue.") else: print("%s items were added to the queue." % \ (total_size - initial_size)) print("Extracted %s items from the queue, queue has %s items \ left" % (len(result), current_size)) # END DEBUG CODE return result </code></pre> <p>But for some reason it doesn't work.</p> <p>Observe the following shell session:</p> <pre><code>&gt;&gt;&gt; import multiprocessing &gt;&gt;&gt; q = multiprocessing.Queue() &gt;&gt;&gt; for i in range(100): ... q.put([range(200) for j in range(100)]) ... &gt;&gt;&gt; q.qsize() 100 &gt;&gt;&gt; l=dump_queue(q) Queue has 100 items initially. Dumping complete: 0 items were added to the queue. Extracted 1 items from the queue, queue has 99 items left &gt;&gt;&gt; l=dump_queue(q) Queue has 99 items initially. Dumping complete: 0 items were added to the queue. Extracted 3 items from the queue, queue has 96 items left &gt;&gt;&gt; l=dump_queue(q) Queue has 96 items initially. Dumping complete: 0 items were added to the queue. Extracted 1 items from the queue, queue has 95 items left &gt;&gt;&gt; </code></pre> <p>What's happening here? Why aren't all items being dumped?</p> http://stackoverflow.com/questions/1537809/python-multiprocessing-and-database-access-with-pyodbc-is-not-safe 2 Python multiprocessing and database access with pyodbc "is not safe"? tgray 2009-10-08T13:29:43Z 2009-10-08T16:02:40Z <p><strong>The Problem:</strong></p> <p>I am getting the following traceback and don't understand what it means or how to fix it:</p> <pre><code>Traceback (most recent call last): File "&lt;string&gt;", line 1, in &lt;module&gt; File "C:\Python26\lib\multiprocessing\forking.py", line 342, in main self = load(from_parent) File "C:\Python26\lib\pickle.py", line 1370, in load return Unpickler(file).load() File "C:\Python26\lib\pickle.py", line 858, in load dispatch[key](self) File "C:\Python26\lib\pickle.py", line 1083, in load_newobj obj = cls.__new__(cls, *args) TypeError: object.__new__(pyodbc.Cursor) is not safe, use pyodbc.Cursor.__new__() </code></pre> <p><strong>The situation:</strong></p> <p>I've got a SQL Server database full of data to be processed. I'm trying to use the multiprocessing module to parallelize the work and take advantage of the multiple cores on my computer. My general class structure is as follows:</p> <ul> <li>MyManagerClass <ul> <li>This is the main class, where the program starts.</li> <li>It creates two multiprocessing.Queue objects, one <code>work_queue</code> and one <code>write_queue</code></li> <li>It also creates and launches the other processes, then waits for them to finish.</li> <li><em>NOTE: this is <strong>not</strong> an extension of multiprocessing.managers.BaseManager()</em> </li> </ul></li> <li>MyReaderClass <ul> <li>This class reads the data from the SQL Server database.</li> <li>It puts items in the <code>work_queue</code>.</li> </ul></li> <li>MyWorkerClass <ul> <li>This is where the work processing happens.</li> <li>It gets items from the <code>work_queue</code> and puts completed items in the <code>write_queue</code>.</li> </ul></li> <li>MyWriterClass <ul> <li>This class is in charge of writing the processed data back to the SQL Server database.</li> <li>It gets items from the <code>write_queue</code>.</li> </ul></li> </ul> <p>The idea is that there will be one manager, one reader, one writer, and many workers.</p> <p><strong>Other details:</strong></p> <p>I get the traceback twice in stderr, so I'm thinking that it happens once for the reader and once for the writer. My worker processes get created fine, but just sit there until I send a KeyboardInterrupt because they have nothing in the <code>work_queue</code>.</p> <p>Both the reader and writer have their own connection to the database, created on initialization.</p> <p><strong>Solution:</strong></p> <p>Thanks to Mark and Ferdinand Beyer for their answers and questions that led to this solution. They rightfully pointed out that the Cursor object is not "pickle-able", which is the method that multiprocessing uses to pass information between processes.</p> <p>The issue with my code was that <code>MyReaderClass(multiprocessing.Process)</code> and <code>MyWriterClass(multiprocessing.Process)</code> both connected to the database in their <code>__init__()</code> methods. I created both these objects (i.e. called their init method) in <code>MyManagerClass</code>, then called <code>start()</code>.</p> <p>So it would create the connection and cursor objects, then try to send them to the child process via pickle. My solution was to move the instantiation of the connection and cursor objects to the run() method, which isn't called until the child process is fully created.</p> http://stackoverflow.com/questions/671607/multithreading-or-multiprocessing 0 multithreading or multiprocessing pinto 2009-03-22T21:01:09Z 2009-10-02T12:47:06Z <p>I am designing a dedicated syslog-processing daemon for Linux that needs to be robust and scalable and I'm debating multithread vs. multiprocess.</p> <p>The obvious objection with multithreading is complexity and nasty bugs. Multi-processes may impact performance because of IPC communications and context switching. </p> <p>"The Art of Unix Programming" discusses this <a href="http://www.faqs.org/docs/artu/ch07s03.html#id2923889" rel="nofollow">here</a>.</p> <p>Would you recommend a process-based system (like Apache) or a multi-threaded approach?</p> http://stackoverflow.com/questions/1501651/log-output-of-multiprocessing-process 3 Log output of multiprocessing.Process Morgoth 2009-10-01T02:44:03Z 2009-10-01T03:30:09Z <p>Is there a way to log the stdout output from a given Process when using the multiprocessing.Process class in python?</p> http://stackoverflow.com/questions/1458205/with-python-multiprocessing-how-do-i-create-a-proxy-in-the-current-process-to-pa 1 With python.multiprocessing, how do I create a proxy in the current process to pass to other processes? Chris B. 2009-09-22T05:13:08Z 2009-09-28T10:12:23Z <p>I'm using the <code>multiprocessing</code> library in Python. I can see how to define that objects <em>returned</em> from functions should have proxies created, but I'd like to have objects in the current process turned into proxies so I can pass them as parameters.</p> <p>For example, running the following script:</p> <pre><code>from multiprocessing import current_process from multiprocessing.managers import BaseManager class ProxyTest(object): def call_a(self): print 'A called in %s' % current_process() def call_b(self, proxy_test): print 'B called in %s' % current_process() proxy_test.call_a() class MyManager(BaseManager): pass MyManager.register('proxy_test', ProxyTest) if __name__ == '__main__': manager = MyManager() manager.start() pt1 = ProxyTest() pt2 = manager.proxy_test() pt1.call_a() pt2.call_a() pt1.call_b(pt2) pt2.call_b(pt1) </code></pre> <p>... I get the following output ...</p> <pre><code>A called in &lt;_MainProcess(MainProcess, started)&gt; A called in &lt;Process(MyManager-1, started)&gt; B called in &lt;_MainProcess(MainProcess, started)&gt; A called in &lt;Process(MyManager-1, started)&gt; B called in &lt;Process(MyManager-1, started)&gt; A called in &lt;Process(MyManager-1, started)&gt; </code></pre> <p>... but I want that final line of output coming from <code>_MainProcess</code>. </p> <p>I could just create another Process and run it from there, but I'm trying to keep the amount of data that needs to be passed between processes to a minimum. The documentation for the <code>Manager</code> object mentioned a <code>serve_forever</code> method, but it doesn't seem to be supported. Any ideas? Does anyone know?</p> http://stackoverflow.com/questions/1470850/twisted-network-client-with-multiprocessing-workers 2 Twisted network client with multiprocessing workers? Hans L 2009-09-24T10:28:19Z 2009-09-24T14:58:46Z <p>So, I've got an application that uses Twisted + Stomper as a STOMP client which farms out work to a multiprocessing.Pool of workers.</p> <p>This appears to work ok when I just use a python script to fire this up, which (simplified) looks something like this:</p> <pre><code># stompclient.py logging.config.fileConfig(config_path) logger = logging.getLogger(__name__) # Add observer to make Twisted log via python twisted.python.log.PythonLoggingObserver().start() # initialize the process pool. (child processes get forked off immediately) pool = multiprocessing.Pool(processes=processes) StompClientFactory.username = username StompClientFactory.password = password StompClientFactory.destination = destination reactor.connectTCP(host, port, StompClientFactory()) reactor.run() </code></pre> <p>As this gets packaged for deployment, I thought I would take advantage of the twistd script and run this from a tac file.</p> <p>Here's my very-similar-looking tac file:</p> <pre><code># stompclient.tac logging.config.fileConfig(config_path) logger = logging.getLogger(__name__) # Add observer to make Twisted log via python twisted.python.log.PythonLoggingObserver().start() # initialize the process pool. (child processes get forked off immediately) pool = multiprocessing.Pool(processes=processes) StompClientFactory.username = username StompClientFactory.password = password StompClientFactory.destination = destination application = service.Application('myapp') service = internet.TCPClient(host, port, StompClientFactory()) service.setServiceParent(application) </code></pre> <p>For the sake of illustration, I have collapsed or changed a few details; hopefully they were not the essence of the problem. For example, my app has a plugin system, the pool is initialized by a separate method, and then work is delegated to the pool using pool.apply_async() passing one of my plugin's process() methods.</p> <p>So, if I run the script (stompclient.py), everything works as expected.</p> <p>It also appears to work OK if I run twist in non-daemon mode (-n):</p> <pre><code>twistd -noy stompclient.tac </code></pre> <p>however, it does <em>not</em> work when I run in daemon mode:</p> <pre><code>twistd -oy stompclient.tac </code></pre> <p>The application appears to start up OK, but when it attempts to fork off work, it just hangs. By "hangs", I mean that it appears that the child process is never asked to do anything and the parent (that called pool.apply_async()) just sits there waiting for the response to return.</p> <p>I'm sure that I'm doing something stupid with Twisted + multiprocessing, but I'm really hoping that someone can explain to my the flaw in my approach.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1446004/python-2-6-send-connection-object-over-queue-pipe-etc 2 Python 2.6 send connection object over Queue / Pipe / etc. Brian M. Hunt 2009-09-18T17:55:30Z 2009-09-23T20:08:02Z <p>Given <a href="http://bugs.python.org/issue4892" rel="nofollow">this bug (Python Issue 4892)</a> that gives rise to the following error:</p> <pre><code>&gt;&gt;&gt; import multiprocessing &gt;&gt;&gt; multiprocessing.allow_connection_pickling() &gt;&gt;&gt; q = multiprocessing.Queue() &gt;&gt;&gt; p = multiprocessing.Pipe() &gt;&gt;&gt; q.put(p) &gt;&gt;&gt; q.get() Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; File "/.../python2.6/multiprocessing/queues.py", line 91, in get res = self._recv() TypeError: Required argument 'handle' (pos 1) not found </code></pre> <p>Does anyone know of a workaround to pass a Connection object on a Queue?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1359795/error-while-using-multiprocessing-module-in-a-python-daemon 2 Error while using multiprocessing module in a python daemon Asif Rahman 2009-08-31T23:02:05Z 2009-09-17T15:45:43Z <p>I'm getting the following error when using the <strong>multiprocessing</strong> module within a python daemon process (using <strong>python-daemon</strong>):</p> <pre> Traceback (most recent call last): File "/usr/local/lib/python2.6/atexit.py", line 24, in _run_exitfuncs func(*targs, **kargs) File "/usr/local/lib/python2.6/multiprocessing/util.py", line 262, in _exit_function for p in active_children(): File "/usr/local/lib/python2.6/multiprocessing/process.py", line 43, in active_children _cleanup() File "/usr/local/lib/python2.6/multiprocessing/process.py", line 53, in _cleanup if p._popen.poll() is not None: File "/usr/local/lib/python2.6/multiprocessing/forking.py", line 106, in poll pid, sts = os.waitpid(self.pid, flag) OSError: [Errno 10] No child processes </pre> <p>The daemon process (parent) spawns a number of processes (children) and then periodically polls the processes to see if they have completed. If the parent detects that one of the processes has completed, it then attempts to restart that process. It is at this point that the above exception is raised. It seems that once one of the processes completes, any operation involving the multiprocessing module will generate this exception. If I run the identical code in a non-daemon python script, it executes with no errors whatsoever.</p> <p><strong>EDIT:</strong></p> <p>Sample script</p> <pre><code>from daemon import runner class DaemonApp(object): def __init__(self, pidfile_path, run): self.pidfile_path = pidfile_path self.run = run self.stdin_path = '/dev/null' self.stdout_path = '/dev/tty' self.stderr_path = '/dev/tty' def run(): import multiprocessing as processing import time import os import sys import signal def func(): print 'pid: ', os.getpid() for i in range(5): print i time.sleep(1) process = processing.Process(target=func) process.start() while True: print 'checking process' if not process.is_alive(): print 'process dead' process = processing.Process(target=func) process.start() time.sleep(1) # uncomment to run as daemon app = DaemonApp('/root/bugtest.pid', run) daemon_runner = runner.DaemonRunner(app) daemon_runner.do_action() #uncomment to run as regular script #run() </code></pre> http://stackoverflow.com/questions/1238349/python-multiprocessing-exit-error 2 Python Multiprocessing exit error phroxy 2009-08-06T11:37:57Z 2009-09-16T19:57:40Z <p>Hey everyone I am seeing this when I press Ctrl-C to exit my app</p> <pre><code>Error in atexit._run_exitfuncs: Traceback (most recent call last): File "/usr/lib/python2.6/atexit.py", line 24, in _run_exitfuncs func(*targs, **kargs) File "/usr/lib/python2.6/multiprocessing/util.py", line 269, in _exit_function p.join() File "/usr/lib/python2.6/multiprocessing/process.py", line 119, in join res = self._popen.wait(timeout) File "/usr/lib/python2.6/multiprocessing/forking.py", line 117, in wait return self.poll(0) File "/usr/lib/python2.6/multiprocessing/forking.py", line 106, in poll pid, sts = os.waitpid(self.pid, flag) OSError: [Errno 4] Interrupted system call Error in sys.exitfunc: Traceback (most recent call last): File "/usr/lib/python2.6/atexit.py", line 24, in _run_exitfuncs func(*targs, **kargs) File "/usr/lib/python2.6/multiprocessing/util.py", line 269, in _exit_function p.join() File "/usr/lib/python2.6/multiprocessing/process.py", line 119, in join res = self._popen.wait(timeout) File "/usr/lib/python2.6/multiprocessing/forking.py", line 117, in wait return self.poll(0) File "/usr/lib/python2.6/multiprocessing/forking.py", line 106, in poll pid, sts = os.waitpid(self.pid, flag) OSError: [Errno 4] Interrupted system call </code></pre> <p>I am using twisted on top of my own stuff,</p> <p>I registered the signal Ctrl-C with the following code</p> <pre><code> def sigHandler(self, arg1, arg2): if not self.backuped: self.stopAll() else: out('central', 'backuped ALREADY, now FORCE exiting') exit() def stopAll(self): self.parserM.shutdown() for each in self.crawlM: each.shutdown() self.backup() reactor.stop() </code></pre> <p>and when they signal others to shutdown, it tries to tell them to shutdown nicely through </p> <pre><code>exit = multiprocessing.Event() def shutdown(self): self.exit.set() </code></pre> <p>where all my processes are in some form,</p> <pre><code>def run(self): while not self.exit.is_set(): do something out('crawler', 'crawler exited sucessfully') </code></pre> <p>Any idea what this error is? I only get it when I have more than one instance of a particular thread. </p>