A pool describes a cache of resources that an application can draw from to save instantiation time.
38
votes
4answers
14k 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():
...
52
votes
1answer
31k views
How is the java memory pool divided?
I’m currently monitoring a Java application with jconsole. The memory tab lets you choose between:
Heap Memory Usage
Non-Heap Memory Usage
Memory Pool “Eden Space”
Memory Pool “Survivor Space”
Memory ...
23
votes
6answers
10k 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 ...
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 ...
9
votes
3answers
3k views
How to designate a thread pool for actors
I have an existing java/scala application using a global thread pool. I would like to start using actors in the project but would like everything in the app using the same pool.
I know I can set the ...
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
2answers
2k views
Python Package For Multi-Threaded Spider w/ Proxy Support?
Instead of just using urllib does anyone know of the most efficient package for fast, multithreaded downloading of URLs that can operate through http proxies? I know of a few such as Twisted, Scrapy, ...
7
votes
5answers
7k views
Tips for using commons-pool in production
Based on an answer I got here, I started to give commons-pool a serious look. My last experience of using it was around 2003, probably version 1.1 or 1.2. Its main user, DBCP, is considered by many as ...
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 ...
5
votes
4answers
2k views
The best alternative for String flyweight implementation in Java
My application is multithreaded with intensive String processing. We are experiencing excessive memory consumption and profiling has demonstrated that this is due to String data. I think that memory ...
18
votes
4answers
6k views
Pros and cons of having dedicated application pools over keeping web applications in one default app pool
What are pros and cons of having dedicated application pools over keeping web applications in one default app pool?
Thanks in advance
6
votes
2answers
7k views
Good Client Socket Pool
I need to manage long running TCP socket connections to an external server from my Java application. I'm looking for a good socket pool so I will be able to re-use the sockets. Are there any ...
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 ...
10
votes
3answers
285 views
Java String pool - When does the pool change?
I have two questions:
public static void main(String[] args) {
String s1 = "bla";
String s2 = "b" +"l" + "a";
String s3 = "b".concat("l").concat("a");
if(s1 == s2)
...
9
votes
2answers
873 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: ...
8
votes
1answer
777 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 ...
5
votes
6answers
447 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 ...
4
votes
3answers
1k 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 ...
2
votes
2answers
4k views
Application pool recycle after “Fixed number of requests”
I am using IIS 6.0 on Windows Server 2003. I want to learn what means recycle after "Fixed number of requests" in application pool setting? My current confusion is, suppose I set this number to 100, ...
10
votes
3answers
20k views
java.lang.IllegalMonitorStateException: (m=null) Failed to get monitor for
Why may this happen? The thing is that monitor object is not null for sure, but still we get this exception quite often:
java.lang.IllegalMonitorStateException: (m=null) Failed to get monitor for ...
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.
6
votes
3answers
1k views
Regarding Java String Constant Pool
This is regarding the Java String Constant Pool. In one of my Programs i am decrypting the password for the database and storing it in a String. I heard that the Java Strings will be stored in a ...
4
votes
1answer
73 views
Should I use Pools for particles if i forced to re-init every particle every time i create them
I am creating a particle system in XNA4 and I've bumped into problem. My first particle system was a simple list of particles, whose instances are created when needed. But then I read about using ...
3
votes
1answer
203 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
1k views
How to restrict pool size of MDB on Glassfish v3
my Message Driven Bean executes highly intensive operations so I would like to restrict it's pool size or my server would have been overloaded. I have tried this ( code ) but it doesn't work, it's ...
2
votes
2answers
3k views
IIS Application Pool: change settings programmatic
How can I change IIS application pool seetings / properties programmatic (C#) ?
For example, how can I change the setting "Enable 32-Bit Applications" ?
Are there property references for IIS 6 and ...
1
vote
4answers
145 views
Is String pool is carried out when two String having same literal ( java)
I have refernced the following links
what is String pool in java?
Garbage collection and Strings
http://www.xyzws.com/Javafaq/what-is-string-literal-pool/3
Questions about Java's String pool
...
0
votes
2answers
664 views
criticism this python code (crawler with threadpool)
how good this python code ? need criticism)
there is a error in this code, some times script do print "ALL WAIT - CAN FINISH!"
and freeze (no more actions are happend..) but i can't find reason why ...
6
votes
6answers
141 views
String Pool behavior
I read this Questions about Java's String pool
and understand the basic concept of string pool but still don't understand the behavior.
First: it works if you directly assign the value and both ...
4
votes
1answer
817 views
c# exception handling on background threads using Thread pool
The application I am working on uses thread pool. Here's the basic pseudo code.
On the main thread
foreach(Object obj in Component.GetObject())
{
//Invoke the thread pool providing the call back ...
3
votes
1answer
143 views
Persistent Processes Post Python Pool
I have a Python program that takes around 10 minutes to execute. So I use Pool from multiprocessing to speed things up:
from multiprocessing import Pool
p = Pool(processes = 6) # I have an 8 thread ...
3
votes
2answers
5k views
Unclosed connection - Connection Pool debugging SQL Server
We have a suspect application leaving a connection open. Just wondering on the debugging tools for this, as to whether anyone has any good tools for isolating this, commercial or otherwise.
I've ...
2
votes
2answers
320 views
How to loop select() to poll for data ad infinitum
#include <stdio.h>
#include <unistd.h>
#include <sys/time.h>
#include <sys/types.h>
int main ()
{
char name[20];
fd_set input_set;
struct timeval timeout;
...
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 ...
2
votes
1answer
532 views
C3P0 Creating too many Threads and Timers
I have a Java webapp running on Tomcat, with Hibernate and C3P0. All entity classes and JPA Controllers were done with Netbeans wizzard. There is a servlet that when called inserts many objects in the ...
2
votes
2answers
828 views
How to use system_user in audit trigger but still use connection pooling?
I would like to do both of the following things:
use audit triggers on my database tables to identify which user updated what;
use connection pooling to improve performance
For #1, I use ...
1
vote
2answers
304 views
Connection pool for couchdb
I have one couchdb database and I am querying it in parallel. Now, I want to create a connection pool, because I discovered a bottleneck in my design - I was using a single instance of couchd , so ...
0
votes
0answers
43 views
node-mysql pool vs single connection
I'm switching to the single connection of node-mysql to use a connection pool.
I have a couple of questions about some behaviours I had with the single connection and I'm not sure they are needed in ...
0
votes
1answer
177 views
Connection pooling pattern
How can I implement a connection pooling in Java?
There is some pattern?
I should use some connections and release it. This connection should be closed after a few times.
0
votes
2answers
711 views
HTTP request queue with worker pool
I'm developing application in Java which connects to different web-servers via HTTP protocol (sends them request and waits for response). I would like to use pattern with queue and worker pool, so I'd ...


