-1
votes
0answers
14 views

Debug Diag report states that autoConfig is set to false but it is set to true

We have taken a snapshot memory dump (not a crash event) and used DebugDiag to assess the activity. DebugDiag consistently gives a warning that the "Threadpool autoConfig is set to false", while the ...
0
votes
1answer
90 views

Monitor status of Object pool workers

I have created this thread from inside another class for reading status of executors on finish and cancel rest of tasks on failure. Tasks are Runnable If there is any failure seen, overall status ...
0
votes
0answers
101 views

CompletionService and ObjectPool

//Worker Thread class MyRunnable implements Runnable { private String status; public void getStatus() { return status; } public void run() { try { if(Thread.interrupted()) throw new ...
0
votes
1answer
18 views

Pooling: Cleanup Pool

I have a pool of fileserver connections. (to cache connected fileservers) Now, if there are 100 open connections in the pool, I want to cleanup after a while. I would do a cleanup after 15 min. (e.g. ...
0
votes
1answer
125 views

get a single Thread from ThreadPoolExecutor

I am running a ThreadPoolExecutor with a number of Threads. I want to manipulate some data in the Threads, so I want to send an object to the thread and after it finishes use the data. The only way I ...
0
votes
1answer
60 views

does Akka manage Camel consumer thread or Camel context manage consumer thread?

the camel document mentioned that CamelContext manages threads for its consumers. Akka integrated Camel thru Camel extension. we know that Akka has its own thread pools (dispatcher). so the question ...
1
vote
0answers
163 views

MongoDB Pool timeout

I need some help analyzing a problem I am encountering during the last weeks. Every here and then my application hangs. Basically it is based on postgres but for some very speedy interactions we ...
2
votes
3answers
154 views

Kind of load balanced thread pool in java

I am looking for a load balanced thread pool with no success so far. (Not sure whether load balancing is the correct wording). Let me explain what I try to achieve. Part 1: I have Jobs, with 8 to 10 ...
2
votes
1answer
123 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 ...
0
votes
1answer
52 views

Thread Pool Execution Order and Passing Future to Another Thread

I would like to create a thread pool with two threads. I would like to ensure the first threads get executed first and after the completion of first thread then the second thread get start. Besides ...
0
votes
1answer
113 views

Zookeeper based lock in EJB

I would like to utilize zookeeper to create distributed lock. I have the Factory creating LockObject that allow to lock/unlock some value. Every LockObject created by the Factory uses the same ...
3
votes
2answers
374 views

Thread Pool vs Many Individual Threads

I'm in the middle of a problem where I am unable decide which solution to take. The problem is a bit unique. Lets put it this way, i am receiving data from the network continuously (2 to 4 times per ...
0
votes
1answer
213 views

Looking for a Linux threadpool api with OS scheduler support

I'm looking for a thread pool abstraction in Linux that provides the same level of kernel scheduler support that the Win32 thread pool provides. Specifically, I'm interested in finding a thread pool ...
0
votes
1answer
245 views

How to create managers for the worker threads?

The code works fine for a single "manager", which basically launches some HTTP GETs to a server. But I've hit a brick wall. How do I create 2 managers now, each with its own Download_Dashlet_Job ...
1
vote
0answers
139 views

Is there a way to create a pool of pools using the Python workerpool module?

I am using the workerpool module to create some threads to perform HTTP GETS to a server. I love the concept so far. I set up a download job for a list of urls and then assign the work to a pool of ...
0
votes
2answers
222 views

ThreadPoolExecutor and Socket. Thread isn't started

I have a class class with main thread public class MainThread extends Thread { private final Socket s; public MainThread(final Socket s) { this.s = s; } public void start() { ...
2
votes
2answers
340 views

Java - Thread pool with many blocked tasks

I'm using a thread pool that should be able to execute hundreds of concurrent tasks. However the tasks usually do very little computation and spend most of their time waiting on some server response. ...
0
votes
0answers
113 views

Implementation of Thread Pools

I was wondering if anyone knows some good resources for researching how Thread Pools have been implemented. I've been asked to define an algorithm that dynamically adjusts the max thread-pool size. ...
1
vote
3answers
167 views

Does using Asynchronous method calls improve performance over .net threads

I am reading conflicting opinions here. Am I right that although an asynchronous method call also gets handled by a thread pool invisible to the user, this is likely to save resources because the ...
2
votes
6answers
448 views

Thread-Pool with multiple limits

I want a Thread-Pool that provides a maximum of X Threads to process tasks, so far no problem. However each submitted Task can specify an IO-Target which is specifically limited (say Y). So a ...
3
votes
1answer
846 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, ...
0
votes
1answer
232 views

Thread pool and data affinity

I am designing an OMS and trying to use multi-threading techniques to speed up processing. An easy way is to allocate threads statically: one thread for all securities starting with a letter. ...
13
votes
1answer
10k 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 ...
1
vote
1answer
157 views

can i join the threads that a ThreadPoolExecutor creates

I'm using ThreadPoolExecutor to make it easy to create threads to handle requests but now a requirement is to execute the requests in order. I was wondering if i can use the join method to make a ...
0
votes
1answer
299 views

Multithread with workerpool modul

import os import urllib import workerpool from datetime import datetime class DownloadJob(workerpool.Job): def __init__(self, fa): self.fa = fa def run(self): f ...
0
votes
1answer
388 views

Java Spring ThreadPoolExecutorFactoryBean

If I configure ThreadPoolExecutorFactoryBean with maxPoolSize=1 - so executor always has 1 thread - if I run 2 or more threads - spring create some queue or next invocation will wait previous? Thanks. ...
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 ...
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 ...
0
votes
2answers
289 views

EJB pool while calling EJB from client app

Is it ok if i inject an EJB in the application client through JNDI, and then call this EJB from multiple threads ? Will the j2ee container know to create more ejb to handle more requests ? OR do i ...
0
votes
1answer
609 views

Java POJO: strategies for handling a queue of request objects to a server

Right now I'm torn up in deciding the best way of handling request objects that I send up to a server. In other words, I have tracking request objects for things such as impression and click tracking ...
4
votes
2answers
506 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 ...
0
votes
0answers
223 views

Thread performance in multi-domain application

Multi-domain application performance. To be short, my problem is that a task executing in one domain of multi-domain application may be much much slower than the same task executing in other domain. ...
0
votes
2answers
662 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 ...
0
votes
1answer
521 views

python threadpool problem (wait for something)

I wrote simple web site crowler with threadpool. The problem is: then crawler is get all over site it must finish, but in real it wait for something in the end,and script dont finished, why this ...
0
votes
2answers
662 views

Message Queue VS Thread Pool

i wonder what the difference between these two ? Thanks.
4
votes
1answer
812 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 ...
0
votes
1answer
85 views

Thread pool stack security issue

In a naive implementation of a thread pool, can a piece of code that is being executed read the data left by some previous code on the stack (if it was running on the same thread instance)? Also, are ...
0
votes
2answers
583 views

WCF and tasks with threading

I am wanting to write some web services using WCF. I would like to have a "thread pool" in my web service. For example, I have nearly 6gb of data I need to manipulate. I would like the client to ...
1
vote
3answers
791 views

Multiple SingleThreadExecutors for a given application…a good idea?

This question is about the fallouts of using SingleThreadExecutor (JDK 1.6). Related questions have been asked and answered in this forum before, but I believe the situation I am facing, is a bit ...
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(): ...
2
votes
1answer
1k views

app pool settings kill threads but keep settings

.net 2.0 aspx app / IIS6 creating a silly number of threads in w3wp.exe process app pool. The app has been isolated to its own app pool with the following settings: RECYCLING recycle worker ...
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, ...
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 ...
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 ...
1
vote
3answers
1k views

ID-ing Deadlocks in a Thread using Firebird

Developer looking for best method to identify a deadlock on a specific transaction inside a specific thread. We are getting deadlock errors but these are very general in FB 2.0 Deadlocks happening ...