A tag redundant to threadpool

learn more… | top users | synonyms

-2
votes
0answers
26 views

threadpool commit overwritres new object

I want to start two threads in a threadpool. Its all okay, but the object I am declaring to commit some params get in conflict. The second threadpool start overrides the object of the first. Its just ...
9
votes
3answers
171 views

Java - relationship between threads and CPUs

I am pretty new to multithreading, and I am working on a project where I am trying to utilize 4 CPUs in my Java program. I wanted to do something like int numProcessors = ...
1
vote
0answers
106 views

Memory Leak using Windows ThreadPool API

I am using Windows ThreadPools in my application, and am experiencing a memory leak of 136 bytes for every call to CreateThreadPoolWork(), as seen via UMDH: + 1257728 ( 1286424 - 28696) 9459 ...
0
votes
2answers
202 views

Sophisticated threading in android

I'm making an app where I've to perform lot of background operations. Download data from 30 similar JSON one after the other. Change priority/order of above mentioned downloads depending upon user ...
1
vote
1answer
98 views

Multithreading - New Thread vs ThreadPool

I have read in several blogs that we should create our own threads for long running, or blocking tasks and not consume from the thread pool. My question: if I set setmaxthreads to 250 and I have 25 ...
2
votes
3answers
232 views

Single thread pool vs one thread pool per task

I want to use concurrency in Java to make requests to an online API, download and parse the response documents, and load the resulting data into a database. Is it standard to have one pool of threads ...
3
votes
1answer
232 views

Which constructs use the ThreadPool in .NET 4?

This question ideally solicits the opinion of advanced users. I'm optimizing some number crunching code and have a few processor cores free. In order to make use of them effectively, I am looking at ...
0
votes
1answer
276 views

Wake up asio deadline timer

I have the following thread pool. #include <queue> #include <map> #include <boost/shared_ptr.hpp> #include <boost/asio/io_service.hpp> #include ...
0
votes
1answer
541 views

ThreadPool with boost::asio does not quit?

I have the following minmal example of a thread pool made with boost::asio. #include <queue> #include <map> #include <boost/shared_ptr.hpp> #include ...
0
votes
0answers
81 views

IIS Application and ThreadPooling

I've got a web app running in IIS 7 that will start background threads. While the user is using the app, the background thread will be caching information for them pulled from a web url and putting it ...
1
vote
2answers
113 views

Can Pthreads be created inside a constructor?

I would like to create a thread pool. I have a class called ServerThread.cpp, whose constructor should do something like this: ServerThread::ServerThread() { for( int i=0 ; ...
0
votes
0answers
121 views

scheduling recursive jobs in from a boost::asio::io_service running job

I have implemented a boost::asio pattern which schedules jobs on a pool of threads whenever a thread is available. very similar to the basic implementation here. http://think-async.com/Asio/Recipes ...
1
vote
2answers
841 views

java.security.AccessControlException : Access denied (java.lang.RuntimePermission modifyThread)

I have my Batch Application Program, in which I am using ThreadPoolExecutor in my Batch Application Program. So as soon as it hits the- executorService.shutdown(); line in my Batch Application ...
2
votes
3answers
2k views

Threadlocal memory leak in Threadpool

I am getting threadlocal memory leak errors in Tomcat and I am using ThreadPool, but have no implementation of ThreadLocal in my webapp. SEVERE: The web application [/myWebApp] created a ...
0
votes
1answer
77 views

What does WT_EXECUTEINUITHREAD do?

What does the WT_EXECUTEINUITHREAD flag for the QueueUserWorkItem function do?
0
votes
1answer
84 views

Threaded Sub-Procedure Within A Module Not Obtaining Correct Data From Other Form

I have an ArrayList that is set to Friend. Once I click my button "abc" is added to the ArrayList and then the form MsgBoxes out the Count of 1 (Correct). When I use Threadpool to count the number of ...
4
votes
3answers
699 views

Java Thread Pool Synchronization

I would like to perform the following algorithm - this must be done in Java for(int i = 0; i< 100; i++){ create 8 threads which perform a task wait for all threads to finish } It is ...
0
votes
1answer
685 views

TPL - set Task to Thread.Sleep for a long time

I have a test to use .NET Task Parallel Library: static void Main(string[] args) { for(int i = 0; i < 1000; i++) { int n = i; Task.Factory.StartNew(() => TaskTest(n)); ...
0
votes
2answers
47 views

threading based on system specs

I have a server with 24gb ram, quad core xeons with hyper threading. I need to create a thread pool in my server application. What are the guidelines for max threads for a thread pool, if any? ...
6
votes
2answers
2k views

How can I kill a pthread that is in an infinite loop, from outside that loop?

I create a thread and I put it into an infinite loop. I get memory leaks when checking the code with valgrind. Here is my code: #include <pthread.h> #include <time.h> void ...
3
votes
2answers
2k views

Java Cached thread pool and thread local

I have a question about java and concurrency. Let say I have a ThreadLocal variable called a. And I use a CachedThreadPool to obtain new threads. When a thread is rehused, what happends to the ...
1
vote
1answer
461 views

pthread threadpool scenario

I want to achieve following kind of scenario using pthreads: There are two kinds of threads in a thread pool. First kind executes (say) fun1 second executes fun2. The main thread starts these two ...
0
votes
1answer
87 views

Thread Synchronization in Thread Pools [closed]

Can someone elaborate on how synchronization work in thread pooling?
2
votes
2answers
2k views

How do I manage ruby threads so they finish all their work?

I have a computation that can be divided into independent units and the way I'm dealing with it now is by creating a fixed number of threads and then handing off chunks of work to be done in each ...
6
votes
5answers
3k views

Thread.Start() versus ThreadPool.QueueUserWorkItem()

The Microsoft .NET Base Class Library provides several ways to create a thread and start it. Basically the invocation is very similar to every other one providing the same kind of service: create an ...
1
vote
1answer
618 views

How to stop a coroutines / thread in Python eventlet

When I use the eventlet package to run a multi-coroutines task, even when the coroutines pool is empty, the program won't continue to run, but will get stuck in a loop. Following is my code and the ...
0
votes
1answer
301 views

Does the Workflow Invoke method use thread pool?

I am comparing the performance of pure C# code and WF(Workflow). I use the WorkflowInvoker.Invoke(new MyWorkflow(), ...); I want to know if Invoke() uses the thread pool. I guess pure C# code should ...
2
votes
2answers
144 views

Can a ThreadPool be used from a Thread in C#?

I am working on a small app that will use threads to make some web requests. I want that when pressing X button a main Thread starts and that would manage the ThreadPool, because depending on the ...
1
vote
1answer
391 views

Java Web Services client: consistent load generation

I have investigated both soapUI/loadUI and JMeter but I have settled on using my own custom-written Web Service client to perform both functional and performance testing. I have integrated Groovy so ...
0
votes
1answer
389 views

How to change CLR thread-pool configurations?

I was reading about thread-pool configurations for asp.net applications in machine.config. Author mentioned this is about asp.net thread-pool and not about CLR thread-pool. How we can change CLR ...
3
votes
3answers
3k views

How to create threads in ASP.NET pages from CLR thread pool instead of ASP.NET pool?

If I create a new thread on an ASP.NET page the IsThreadPoolThread property is true. First question is, is it from ASP.NET pool or CLR pool ? Second question is, if it is from ASP.NET pool then how to ...
0
votes
1answer
697 views

Network Service needs to return a callback

I have a Networking service that i want to use as a Service. It's a local Service since it's not valid anymore once the application process is dead and no Other applications need to access it.(or ...
1
vote
2answers
269 views

What happens to locks on objects passed to other threads?

I'm not quite sure how to word this, so I'll just paste my code and ask the question: private void remoteAction_JobStatusUpdated(JobStatus status) { lock (status) { status.LastUpdatedTime ...
3
votes
1answer
975 views

Will a ThreadPoolExecutor.CallerRunsPolicy ever throw a RejectedExecutionException?

Are there any circumstances under which a ThreadPoolExecutor.CallerRunsPolicy will throw a RejectedExecutionException? It seems to me that the policy itself is intended to prevent throwing these ...
1
vote
1answer
727 views

Android “misses” periodical execution of Thread using ScheduledExecutorService

I have an android app that repeatedly collects fingerprints from the wifi-networks that are around (for scientific reasons, not to invade anybodies privacy). Anyways, imagine I have a function that ...
0
votes
3answers
107 views

Parallelize the content retrieval from database, search and store as HTML

I have a database table having HTML content stored as binary serialized blob. I need to retrieve content one by one, look for certain keywords in the content (and report the matches found) and also ...
2
votes
3answers
608 views

threads in a threadpool

I have been reading about threadpools. A number of sites say that the default max threads on a threadpool is 25 (per processor). however i have not modified the max threads and when i do : ...
1
vote
2answers
381 views

A thread pool that lets me know when at least 1 has finished?

I need to use a thread pool in python, and I want to be able to know when at least 1 thead out or "maximum threads allowed" has finished, so I can start it again if I still need to do something. I ...
2
votes
4answers
2k views

What is the use of a Thread pool in Java?

What is the use of a Thread pool? Is there a good real world example?
4
votes
3answers
1k views

How expensive is creating of a new thread in Java? When should we consider using of a thread pool?

I wonder where is the verge after which a thread pool should be used. How many new threads per second can I create without using a thread pool still avoiding noticeable performance penalty? Are there ...
2
votes
5answers
1k views

java thread pool keep running

This is more a generic question than a specific one. I'm trying to have a multi threaded environment that stays active so that I can just submit tasks and run them. I want to do this without the ...
6
votes
4answers
3k views

Minimizing Java Thread Context Switching Overhead

I have a Java application running on Sun 1.6 32-bit VM/Solaris 10 (x86)/Nahelem 8-core(2 threads per core). A specific usecase in the application is to respond to some external message. In my ...
1
vote
3answers
308 views

Help regarding C# thread pool

I have a method that gets called quite often, with text coming in as a parameter.. I'm looking at creating a thread pool that checks the line of text, and performs actions based on that.. Can ...
5
votes
4answers
1k views

Recursively adding threads to a Java thread pool

I am working on a tutorial for my Java concurrency course. The objective is to use thread pools to compute prime numbers in parallel. The design is based on the Sieve of Eratosthenes. It has an array ...
2
votes
5answers
1k views

.NET Thread Pool - Unresponsive WinForms UI

Scenario I have a Windows Forms Application. Inside the main form there is a loop that iterates around 3000 times, Creating a new instance of a class on a new thread to perform some calculations. ...
5
votes
6answers
7k views

Java Thread Pool

I want to learn to write a thread pool in Java Can anyone point me to useful resources ?
1
vote
1answer
1k views

jetty configuration: what is “lowThreads”?

I'm writing a jetty configuration file, and I haven't been able to find information about a thread pooling parameter. My aim is to tune jetty for performance, and I would like to understand what the ...
0
votes
1answer
615 views

How is the thread-pool handled when using System.Timer objects in multiple threads?

Ok, I know an object of System.Timer executed in the thread-pool, rather than in the UI thread. I also know that the System.Timer is thread-safe. Say I have a collection of System.Timer objects. I ...
-1
votes
1answer
162 views

Request for server program using a threadpool

I am looking for code for a server program that accepts several client connections using the threadpool concept, such that each client can send a file to the server, and the server should respond by ...
0
votes
6answers
2k views

Limiting number of requests to a servlet

We have a servlet which occupies more virtual memory on the server due to the logic it has. For this reason, we would like to limit the concurrent requests to this server say for example we would only ...

1 2 3