Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
3answers
6k 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(): ...
12
votes
5answers
4k 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
2answers
10k views

How is the java memory pool divided?

I’m currently monitoring a Java application with jconsole. The memory tab let you choose between: Heap Memory Usage Non-Heap Memory Usage Memory Pool “Eden Space” Memory Pool “Survivor Space” Memory ...
10
votes
4answers
3k 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
9
votes
3answers
2k 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 ...
6
votes
5answers
132 views

Dealing with fragmentation in a memory pool?

Suppose I have a memory pool object with a constructor that takes a pointer to a large chunk of memory ptr and size N. If I do many random allocations and deallocations of various sizes I can get the ...
6
votes
4answers
2k 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 ...
5
votes
4answers
106 views

String POOL in java

Java has string pool, due to which objects of string class are immutable. But my question stands - What was the need to make String POOL? Why string class was not kept like other class to hold its ...
5
votes
1answer
620 views

How can I monitor/log Tomcat's thread pool?

I have a Tomcat installation where I suspect the thread pool may be decreasing over time due to threads not being properly released. I get an error in catalina.out when maxthreads is reached, but I ...
5
votes
1answer
213 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
1answer
517 views

boost pool_alloc

Why is the boost::fast_pool_allocator built on top of a singleton pool, and not a separate pool per allocator instance? Or to put it another way, why only provide that, and not the option of having a ...
5
votes
5answers
3k 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 ...
5
votes
6answers
10k views

What are optimal settings for Recycling of Application Pools in IIS7 in shared environment?

What are optimal settings for Recycling of Application Pools in IIS7 in shared environment? Thanks in advance
4
votes
4answers
87 views

optimal java threadsafe object pooling

I am not that familiar with the concurrent library of Java, so for the following problems I would normally just write my own mutex governed code, but I am concerned that with servlet traffic, the ...
4
votes
1answer
181 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.
4
votes
2answers
252 views

detachNewThreadSelector crashes the app randomly

I am developing an iphone app in which I am extracting RSS feeds and then parsing them.My code is as bellow: - (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; NSLog(@"in ...
4
votes
2answers
364 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
2answers
336 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 ...
4
votes
1answer
771 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 ...
4
votes
2answers
2k 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 ...
4
votes
4answers
773 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 ...
4
votes
1answer
549 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 ...
4
votes
6answers
549 views

One big pool or several type specific pools?

I'm working on a video game witch require high performance so I'm trying to setup a good memory strategy or a specific part of the game, the part that is the game "model", the game representation. I ...
4
votes
3answers
6k 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 ...
4
votes
3answers
4k 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 ...
4
votes
1answer
393 views

What physics engine would be good for a Silverlight pool engine?

I have looked into the Farseer engine, but I barely scratched the surface. Would it or another engine be good for a reasonably accurate pool game engine?
4
votes
5answers
3k views

Buffer pool management using C#

We need to develop some kind of buffer management for an application we are developing using C#. Essentially, the application receives messages from devices as and when they come in (there could be ...
3
votes
1answer
43 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
1answer
98 views

Python, multithreading too slow, multiprocess

I'm a multiprocessing newbie, I know something about threading but I need to increase the speed of this calculation, hopefully with multiprocessing: Example Description: sends string to a thread, ...
3
votes
1answer
61 views

Is it possible to list all database connections currently in the pool?

I'm getting ActiveRecord::ConnectionTimeoutError in a daemon that runs independently from the rails app. I'm using Passenger with Apache and MySQL as the database. Passenger's default pool size is 6 ...
3
votes
1answer
414 views

Python multiprocessing pool inside daemon process

Salutations SO, 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 ...
3
votes
3answers
448 views

Worker process taking high CPU%

All of my websites are hosted in IIS and configured with one application pool. This application pool consists 10 websites running. It is working fine till today, but all of sudden I am observing that ...
3
votes
1answer
570 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 ...
3
votes
2answers
268 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: ...
3
votes
1answer
549 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): ...
3
votes
2answers
1k 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 ...
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? ...
2
votes
1answer
46 views

IIS still accessing resources via pool identity, not impersonated user

I'm at my whitt's end! On Server 2003, I have an INTRANET app configured to use BASIC AUTHENTICATION and an app pool with a dedicated account. In web.config I'm specifying <authentication ...
2
votes
1answer
96 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
112 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 ...
2
votes
2answers
90 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) ...
2
votes
2answers
236 views

Java - how do you find out which class file has a corrupt constant pool?

Is there some kind of a tool or some better output from javac to figure out which class file has a corrupt constant pool.. as I cannot compile some existing java files due to some pre-compiled file ...
2
votes
1answer
311 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 ...
2
votes
1answer
98 views

How to Create a Data Pool in Jasmin?

Does Jasmin have the ability to specify a constant pool? I need to be able to create a descriptor area of thousands of bytes. The area will contain arbitrary byte data including nulls. Here's an ...
2
votes
2answers
146 views

Python: How can I check the number of pending tasks in a multiprocessing.Pool?

I have a small pool of workers (4) and a very large list of tasks (5000~). I'm using a pool and sending the tasks with map_async(). Because the task I'm running is fairly long, I'm forcing a ...
2
votes
3answers
435 views

Thread Safe Object Pool with Guarantee of Returning Existing Object if Strong References Exist?

I'm trying to extend the Clojure language to extend ACI-guaranteed refs to ACID-guaranteed drefs (durable refs). The API is to simply to call (dref key value), where key is a String of the key to be ...
2
votes
1answer
176 views

Resource pool for a data structure

When implementing an elementary data structure like stack, queues, linked list et al. should I create a resource pool(of nodes) by dynamically allocating memory in bunch or should I allocate memory ...
2
votes
3answers
716 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
970 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 ...
2
votes
3answers
439 views

Avoid creating 'new' String objects when converting a byte[] to String using a specific charset

I'm reading from a binary file and want to convert the bytes to US ASCII strings. Is there any way to do this without calling new on String to avoid multiple semantically equal String objects being ...

1 2 3 4