Tagged Questions
0
votes
1answer
25 views
Can't pickle instance method using Pool.map(), but I have no instance method
I'm trying to use the multiprocessing.Pool object to run some database queries in parallel. I'm using MySQLdb.
I have some module-level functions where I define queries to run, like this:
def ...
0
votes
1answer
12 views
The Purpose of the Pool in Python Multiprocessing
I'm having difficulty understanding the purpose of the pool in Python's multiprocessing module.
I know what this code is doing:
import multiprocessing
def worker():
"""worker function"""
...
0
votes
1answer
26 views
Bug in python/multiprocessing.pool?
(this is using Python 2.7)
I have found similar links but not about the exact same issue than what I am having.
This program hangs on the map_async, and never finishes, I can see the Python process ...
2
votes
2answers
110 views
python multiprocessing pool terminate
I'm working on a renderfarm, and I need my clients to be able to launch multiple instances of a renderer, without blocking so the client can receive new commands. I've got that working correctly, ...
0
votes
2answers
177 views
Python 2.7: process pool not working (inifinite workers created)
My multiprocess pool is not working and is behaving strangely:
from multiprocessing import Pool
import multiprocessing, logging
logger = multiprocessing.log_to_stderr()
...
5
votes
6answers
583 views
Multiprocessing.Pool makes Numpy matrix multiplication slower
So, I am playing around with multiprocessing.Pool and Numpy, but it seems I missed some important point. Why is the pool version much slower? I looked at htop and I can see several processes be ...
1
vote
1answer
100 views
How to parallelise a function from another module using python multithreading without pickling it?
In my implementation of an svm prediction model, I would like to make the execution of a function svmutil.svm_train multi-threaded. Although I'm new to the implementation of multi-threaded programs, I ...
2
votes
1answer
129 views
multiprocessing? multithreading? pool? queue? brute forcing
this is a general knowledge question, soon to turn into a project. I have a script that attempts to brute force a sha1 with a known salt. In this application anyways the salt is known. Anyways, script ...
1
vote
2answers
124 views
How to get the amount of “work” left to be done by a Python multiprocessing Pool?
So far whenever I needed to use multiprocessing I have done so by manually creating a "process pool" and sharing a working Queue with all subprocesses.
For example:
from multiprocessing import ...
4
votes
3answers
596 views
Do multiprocessing pools give every process the same number of tasks, or are they assigned as available?
When you map an iterable to a multiprocessing.Pool are the iterations divided into a queue for each process in the pool at the start, or is there a common queue from which a task is taken when a ...
0
votes
2answers
365 views
python multiprocessing - Best way to initialize/pass database connection to be used across processes
I am having some difficulty in passing a database connection object or the cursor object using pool.map in the Python multiprocesing package. Basically, I want to create a pool of workers each with ...
1
vote
0answers
182 views
Trouble with python multiprocessing: Pool freezing
I run recently on quite some trouble with python multiprocessing Pool method.
As you suggested, I'll try hardcoring these functions but:
a) they use sqlite databases
b) they are cross-dependent
c) ...
3
votes
1answer
215 views
Python's multiprocessing map_async generates error on Windows
The code below works perfectly on Unix but generates a multiprocessing.TimeoutError on Windows 7 (both OS use python 2.7).
Any idea why? Thanks.
from multiprocessing import Pool
def increment(x):
...
3
votes
1answer
508 views
python multiprocessing, manager initiates process spawn loop
I have a simple python multiprocessing script that sets up a pool of workers that attempt to append work-output to a Manager list. The script has 3 call stacks: - main calls f1 that spawns several ...
1
vote
1answer
163 views
Problems in using multiprocessing
maybe you can help me in finding my error in setting up a multiprocessing function.
I set up a worker function, that fetches data (type float) and compute an average.
If I use the following code (with ...
0
votes
1answer
347 views
Python multiprocessing.Pool is weird on Windows
I have a super simple python script as defined here
import multiprocessing
from multiprocessing import Pool
print "CPUs: " + str(multiprocessing.cpu_count())
convertPool = ...
2
votes
0answers
215 views
Pass SIGINT/^C to children in a Pool?
I have the following code (just testing some assumptions about the Pool class):
#!/usr/bin/env python
from time import sleep
from multiprocessing import Pool
def run_process(args):
print ...
7
votes
2answers
625 views
Python multiprocessing: how to limit the number of waiting processes?
When running a large number of tasks (with large parameters) using Pool.apply_async, the processes are allocated and go to a waiting state, and there is no limit for the number of waiting processes. ...
1
vote
0answers
889 views
python pool.map vs map
I need to apply a complex function to a long series. Done sequentially this seems to be inefficient as I have access to a 12 core machine.
Before making significant investment in this, i wrote up ...
1
vote
1answer
297 views
python multiprocessing Pool: processes spawn new copies of main application
I'm working on a larger size Python application which runs a solver on several hundred distinct problem scenarios. There is a GUI that allows the user to set up the solver configuration. In an attempt ...
2
votes
1answer
204 views
Issues with Pool and multiprocessing in Python 3
Currently I'm trying to convert my little python script to support multiple threads/cores. I've been reading about the multiprocessing module for several days now and I've also been trying to get it ...
0
votes
1answer
402 views
python multiprocessing - pool allocation
I notice this behavior in python for the pool allocation. Even though I have 20 processes in the pool, when I do a map_async for say 8 processes, instead of throwing all the processes to execute, I ...
5
votes
1answer
524 views
Alternative use patterns for python multiprocessing avoiding proliferation of global state?
This (enormously simplified example) works fine (Python 2.6.6, Debian Squeeze):
from multiprocessing import Pool
import numpy as np
src=None
def process(row):
return np.sum(src[row])
def ...
0
votes
1answer
588 views
process can not stop in python multiprocessing pool
I have a program using python multiprocessing. I find that all the process created in the main programs can be finished but the main programs is always waiting for the return values and can not stop. ...
3
votes
1answer
462 views
Python Multiprocessing: How to add or change number of processes in a pool
I have created a pool from the python multiprocessing module and would like to change the number of processes that the pool has running or add to them. Is this possible? I have tried something like ...
2
votes
2answers
838 views
Python multiprocessing map_async hangs
I have some troubles [probably] with closing a pool of processes in my parser. When all tasks done, it hangs and do nothing, cpu usage is about 1%.
profiles_pool = multiprocessing.Pool(processes=4)
...
2
votes
1answer
496 views
Dynamic worker pool management in python multiprocessing
What I'd like to do is monitor how the system resource usage is and dynamically increase/decrease the amount of workers in the pool.
I namely have a 24 core node with 48GB of RAM and what I do is ...
1
vote
0answers
186 views
Python: multiprocessing Pool map with init(pass handler to mapped function), AND uninit
I want to do something like this using Pool:
For each process in the Pool, initialize a handler (database handler, http handler, whatever).
Call the mapped function with the handler initialized in ...
2
votes
1answer
327 views
How to use Ampoule with Twisted to create a pool mixed of local and remote processes?
I've been told, that a Twisted-based library Ampoule is a great way to create a pool of processes that are executed on different computers. However there is no docs for that and Ampoule's examples ...
2
votes
1answer
3k views
how to troubleshoot an “AttributeError: __exit__” in multiproccesing in Python?
I tried to rewrite some csv-reading code to be able to run it on multiple cores in Python 3.2.2. I tried to use the Pool object of multiprocessing, which I adapted from working examples (and already ...
8
votes
1answer
822 views
python prime crunching: processing pool is slower?
So I've been messing around with python's multiprocessing lib for the last few days and I really like the processing pool. It's easy to implement and I can visualize a lot of uses. I've done a couple ...
2
votes
1answer
316 views
python 2.5.2 multiprocessing pool behavior
When attempting to divide a DB insertion up between cores using the python multiprocessing module on 2.5.2, CentOS 5.5, the entire pool of 16 processes aborts as soon as the first one finishes. I ...
1
vote
1answer
1k views
Mulitprocess Pools with different functions
Most examples of the Multiprocess Worker Pools execute a single function in different processes, f.e.
def foo(args):
pass
if __name__ == '__main__':
pool = multiprocessing.Pool(processes=30)
...
9
votes
1answer
1k views
Python Process Pool non-daemonic?
Would it be possible to create a python Pool that is non-daemonic? I want a pool to be able to call a function that has another pool inside. Thanks.
2
votes
2answers
274 views
What's hanging up this use of map.pool in python?
I have a command line program I'm running and I pipe in text as arguments:
somecommand.exe < someparameters_tin.txt
It runs for a while (typically a good fraction of an hour to several hours) ...
3
votes
1answer
1k views
Python multiprocessing pool inside daemon process
I opened up a question for this problem and did not get a thorough enough answer to solve the issue (most likely due to a lack of rigor in explaining my issues which is what I am attempting to ...
1
vote
1answer
1k views
Python & Redis: Manager/Worker application best practices
I have a few general questions about using Python and Redis to create a job queue application for running asynchronous commands. Here is the code I have generated so far:
def queueCmd(cmd):
...
4
votes
1answer
1k views
Python Multiprocessing - Just not getting it
I've been spending some time trying to understand multiprocessing, though its finer points evade my untrained mind. I've been able to get a pool to return a simple integer, but if the function doesn't ...
9
votes
2answers
921 views
How to let Pool.map take a lambda function
I the following function
def copy_file(source_file, target_dir):
pass
Now I would like to use multiprocessing to execute this function at once
p = new Pool(12)
p.map(lambda x: ...
4
votes
2answers
512 views
Multithreading Python FS Crawler
I've written a python function that scours a filesystem using a provided directory pattern, with optional 'actions' to take provided at each level. I then tried multi-threading it since some of the ...
11
votes
1answer
3k views
Can I use a multiprocessing Queue in a function called by Pool.imap?
I'm using python 2.7, and trying to run some CPU heavy tasks in their own processes. I would like to be able to send messages back to the parent process to keep it informed of the current status of ...
6
votes
2answers
5k views
How do you pass a Queue reference to a function managed by pool.map_async()?
I want a long-running process to return its progress over a Queue (or something similar) which I will feed to a progress bar dialog. I also need the result when the process is completed. A test ...
0
votes
2answers
248 views
mutliprocessing.Pool.add_sync() eating up memory
I want to use multithreading to make my script faster...
I'm still new to this. The Python doc assumes you already understand threading and what-not.
So...
I have code that looks like this
from ...
4
votes
3answers
2k views
multiprocessing Pool hangs when there is a exception in any of the thread
I am new to Python and trying a multiprocessing.pool program to process files, it works fine as long as there are no exceptions. If any of the thread/process gets an exception the whole program waits ...
38
votes
4answers
15k views
Can't pickle <type 'instancemethod'> when using python's multiprocessing Pool.map()
I'm trying to use multiprocessing's Pool.map() function to divide out work simultaneously. When I use the following code, it works fine:
import multiprocessing
def f(x):
return x*x
def go():
...
3
votes
1answer
1k views
Multiprocessing Pool inside Process time out
When ever I use the following code the pool result always returns a timeout, is there something logically incorrect I am doing?
from multiprocessing import Pool, Process, cpu_count
def add(num):
...
14
votes
4answers
5k views
How to combine Pool.map with Array (shared memory) in Python multiprocessing?
I have a very large (read only) array of data that I want to be processed by multiple processes in parallel.
I like the Pool.map function and would like to use it to calculate functions on that data ...
2
votes
1answer
2k views
Profiling a python multiprocessing pool
I'm trying to run cProfile.runctx() on each process in a multiprocessing pool, to get an idea of what the multiprocessing bottlenecks are in my source. Here is a simplified example of what I'm trying ...
26
votes
6answers
11k views
Keyboard Interrupts with python's multiprocessing Pool
How can I handle KeyboardInterrupt events with python's multiprocessing Pools? Here is a simple example:
from multiprocessing import Pool
from time import sleep
from sys import exit
def ...
3
votes
2answers
2k views
Python multiprocessing: Pool of custom Processes
I am subclassing the Process class, into a class I call EdgeRenderer. I want to use multiprocessing.Pool, except instead of regular Processes, I want them to be instances of my EdgeRenderer. Possible? ...

