Pooling resources in given limits and automatically assign task to open workers.

learn more… | top users | synonyms

3
votes
2answers
193 views

More appropriate for my task: background worker or thread pool?

I have a simple web application module which basically accepts requests to save a zip file on PageLoad from a mobile client app. Now, What I want to do is to unzip the file and read the file inside ...
1
vote
1answer
99 views

ExecutorService.shutdown. How can I shutdown executor when task's queue will become empty?

import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; public class Main { public static void main(String[] args) { ...
0
votes
0answers
84 views

How to requestLocationUpdates() periodically in a thread?

I used a service to collect the location information. like static int count = 1; @Override public void onStart(Intent intent, int startId) { /* updating location when sevice is starting */ ...
0
votes
1answer
189 views

self hosted pushsharp - Events_OnNotificationSendFailure Failure: There were not enough free threads in the ThreadPool to complete the operation

i my PushSharp service is self hosted in windows service, but after a short while it always throws: Events_OnNotificationSendFailure - the exception is "There were not enough free threads in the ...
0
votes
2answers
80 views

Using a ThreadPool with a Delegate?

I'm attempting to use the QueueUserWorkItem method on ThreadPool, however, I'm having some problems when I attempt to pass a delegate to the method. I imagine the problem with my code lies in the way ...
2
votes
1answer
195 views

APR joing thread pool threads when using apr_thread_pool_schedule

gcc 4.7.2 c89 apr utility 1.4 Hello, I am using a thread pool to start threads. However, I can't see any apr function that allows me to wait for the threads to join. The code sippet, removed all ...
0
votes
3answers
77 views

Is it safe to use hundreds of threads if they're only created once?

Basically I have a Task and a Thread class,I create threads equal to the amount of physical cores(or logical cores,since on Intel CPU cores they're double the count). So basically threads take tasks ...
2
votes
3answers
243 views

Can I make my Thread pool create its threads as foreground?

By default the thread pool in .NET works with background threads. I can't change it to run as foreground. How do I change this to run as foreground threads? Edit: I need to use this because I'm ...
1
vote
1answer
43 views

Limiting number of threads for actor pool to 1

In one of my actors react method I output the thread pool by doing: val scalaThreadSet = asScalaSet(Thread.getAllStackTraces().keySet()); scalaThreadSet.foreach(element => ...
0
votes
4answers
65 views

How using Thread pool won't crash Host resources over creating your own threads?

I am still a little confused about choosing using thread pool over creating my own threads. I'm aware of the performance issue creating my own threads(creating, execution garbage collector collecting ...
0
votes
3answers
85 views

Effecient way of moving multiple vehicles in a simulation

So, I'm in doubt to which way is the most optimal in the situation given below: I have a simulation of vehicles moving along roads on a map. Moving them is no problem and they obey traffic lights ...
0
votes
2answers
46 views

Why I can not found the specified thread in Asp.Net Framewok thread pool

ALL I was working on a little code which is for search a thread by thread id in the processes of computer. All my code looks like below , Please help to review it. :) using System.Diagnostics; ...
0
votes
0answers
89 views

Android: safely handling RejectedExecutionException on bulk uploads to S3

My Android app is for data collection in an industrial context - fulltime employees use the app to take many observations (photos, geotag, text, etc) which are then uploaded in bulk when wifi is ...
0
votes
0answers
41 views

worker threads, same resource, different pools

I have working implementation where there is a pool of workers retrieving items from the database (if there are any available) and executing them. To be precise - these are jBPMv3 job executors. I'd ...
0
votes
0answers
54 views

Running SyncToyCmd using a threadpool

This is the context: I am trying to run SyncToyCmd (version 2.1) in multiple threads to synchronize different folder pairs (one per thread) I have followed the ThreadPool example from ...
0
votes
0answers
32 views

Where to store current status of a thread process

I have a long running process that I need to execute and forget which the user will excute via a page method. I then need to return to the user that the process as started. The browser will then use ...
0
votes
2answers
111 views

Issues while trying to implement my own ThreadPool (Concept problems)

I wanted to share my thoughts with you. Consider you have to implement a Pool of Threads by yourself. I thought of it to have some member field like private static List<Thread> of Threads to be ...
0
votes
0answers
71 views

Monitor ThreadPool in Asp.Net Framework

Can anyone kindly give me a tool or sample code to monitor Asp.Net Thread Pool? I want to know below features of thread pool if there exists any possibility. The number of threads which are ...
2
votes
4answers
154 views

what's the proper way to use a ThreadPool?

If my understanding of the way the ThreadPool works is correct, one of its purposes is to limit the number of worker threads within a process that can be created at a given time. For example, if you ...
3
votes
2answers
122 views

ExecutorCompletionService runs only in a single thread, but ExecutorService uses all CPUs

I have a bunch of Callables that I want to run in parallel and get the results for. I have 12 cores on my machine; the following code works as expected with 100% CPU usage: exec = ...
-1
votes
4answers
160 views

ThreadPool.QueueUserWorkItem - Order not preserved?

I just noticed that the order of callbacks queued via ThreadPool.QueueUserWorkItem is not deterministic, it certainly isn't the order the callbacks have been passed in. This can be verified with the ...
0
votes
1answer
196 views

Doubts in the code of Thread Pool implementation

After spending lots of time with threadpool concepts and by reading different codes on numbers of blogs and posting questions on Stackoverflow.com, now I got clear image of this concept. But in the ...
0
votes
1answer
136 views

pthreads: thread pool synchronization methods for reentrant/reusable threads?

this is my first post here, thank you for your tolerance in advance. I have a thread pool with job queue >> number of threads. Process flow: Init thread pool (M number of threads) Put N number of ...
1
vote
1answer
186 views

hidden.edu.emory.mathcs.backport* [closed]

In application thread dump I can see threadpool with five threads like following: "pool-1-thread-5" prio=10 tid=0x000000000101a000 nid=0xe1f in Object.wait() [0x00007f3c66086000] ...
4
votes
2answers
219 views

Task continuation parallel execution with async/await

In the context of a console application making use of async/await constructs, I would like to know if it's possible for "continuations" to run in parallel on multiple threads on different CPUs. I ...
1
vote
1answer
144 views

Did netty.3.5.7 begin initializing worker pool with 200 threads?

Can anyone confirm if Netty 3.5.7 introduced a change that causes an NIO threadpool of 200 threads to be created? We have a webapp that we're running in Tomcat 7 and I've noticed that at some point ...
1
vote
1answer
526 views

Understanding Thread Dump of Apache Tomcat 6.0.26

I made an observation and I would like to fully understand it. First I regularly take a thread dump and create a summary of the thread states: jstack -l 19498 > dump.txt ; awk '/State: / { print ...
0
votes
2answers
192 views

How to code run method in Thread pooling

I got very confused by reading Thread Pooling. I learnt the concept, how they actually works. But I confused in the part , how to code this. I searched a lot on the net. Finally I got a blog, that ...
-4
votes
1answer
1k views

Example For ThreadPool in JAVA [closed]

Can anybody give me simple example in which we have created our own threadpool class to get better feel of the threads. I don't want to use Executor Service available in java. I mean any inbuilt class ...
0
votes
0answers
102 views

How to wait for async thread to finish in WindowsPhone 8

auto thread = ThreadPool::RunAsync( ref new WorkItemHandler( [](IAsyncAction^ operation) { // stuff... })); here, in a "main thread" I would like to wait till above thread finishes I'm running ...
3
votes
1answer
144 views

I/O Completion Port vs. QueueUserApc?

Under Windows, there are two means to insert work items for avoiding to create too many threads: Means 1: Use IOCP; Means 2: Use QueueUserApc. However, means 1 is far more intricate than means 2. ...
2
votes
3answers
156 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 ...
4
votes
2answers
66 views

Linked worker pools in Python

I'm trying to setup a system of linked worker pools that look like this: ╭────────╮ ╭─────────╮ ╭─────────╮ │ ├──> Worker 1 ───> │ ├──> ...
3
votes
1answer
117 views

How to achieve multi threading while one thread is at sleep mode

I have a problem where my class is performing the first run method after which it is not proceeding into a second, overidden run method. The program execution beings in a controller class which has a ...
1
vote
1answer
127 views

How to detect if a pointer referenced by a TThreadList is invalid to avoid AV

I have a TThreadList wich holds all pointers to objects created by my server. The server has a pool of threads to send data to all clients in that thread list. It locks the list and then releases the ...
0
votes
1answer
43 views

Unable to store Vector data when calling “call” method in Java

I have a problem with my code. Code is about to find gateways/subnets and if program finds one it returns it to a class that called "call()" method. That part works fine but problem is that I want to ...
1
vote
1answer
83 views

Why is my NHibernate session available only sometimes in a windows service?

Here is the relevant config of NH using fluent StructureMap ISessionFactory sessionFactory = fluentConfig.BuildSessionFactory(); For<Configuration>().LifecycleIs(new ...
1
vote
1answer
101 views

Do NHibernate sessions per thread work with threadpool?

If I somehow manage to configure NHibernate sessions to be per thread, will that work when I process data in threads coming from a thread pool? Threads from the pool are "recycled" (yes?) so if a ...
9
votes
1answer
729 views

Will async(launch::async) in C++11 make thread pools obsolete for avoiding expensive thread creation?

It is loosely related to this question: Are std::thread pooled in C++11?. Though the question differs, the intention is the same: Question 1: Does it still makes sense to use your own (or 3rd-party ...
0
votes
2answers
64 views

Callback for arriving task in jobqueue?

I was wondering if anyone has any good design suggestions for a jobqueue that notifies a processJob() function when tasks > 0. I'm using Boost and c++ and just trying to get a general idea of such a ...
0
votes
0answers
56 views

How to access webbrowser properties from thread

I am trying to get source code of a website But this error occurs I call my sub like this ThreadPool.QueueUserWorkItem(New WaitCallback(AddressOf GetSource)) And its my sub Sub ...
2
votes
4answers
239 views

Thread pool extreme perfomance lag

There have been quite a few discussions on the issue, but they can't seem to explain my particular problem. I'm having serious performence issues when threading useing ThreadPool instead of Thread ...
1
vote
4answers
176 views

FixedThreadPool

What I need to do is use a FixedThreadPool of size 3 and then use it to print the ThreadName and then make it go to sleep for a random amount of time within a specified time interval and print that it ...
1
vote
1answer
153 views

Underlying thread behavior with Future.get(timeout)

We are using Future with a timeout to accomplish a task. We get a TimeOutException when time limit exceeds. From the behavior of thread dump, I realize that underlying thread continues. Is it the ...
0
votes
1answer
67 views

Threadpool to Task Conversion

My current solution uses the ThreadPool to process transactions. Every couple minutes I grab 1-200 transactions and queue each one via the QueueUserWorkItem function. Something like this where 'trans' ...
0
votes
1answer
53 views

ActiveX component changes back to UI thread

In a .NET application, I'm using a third-party ActiveX control to connect to a device. This components has no UI so I can use from a Windows App, a Console App or a Windows Service. The problem is ...
2
votes
4answers
111 views

Java Threadpool size and availableProcessors()

I have a program which runs (all day) tasks in parallel (no I/O in the task to be executed) so I have used Executors.newFixedThreadPool(poolSize) to implement it. Initially I set the poolSize to ...
0
votes
1answer
47 views

Will tomcat create an unlimited number of handling threads?

I was recently notified by sysadmin about a large amount of system threads created by a tomcat instance. The performance graph showed that from a particular point in time the number of threads started ...
1
vote
1answer
256 views

C# .Net 2.0 Threadpool equivalent of .Net 4.5 TPL producer consumer logic

In my application I have a set number of actions to preform. I want to designate a specific amount of threads to do the actions. As some action may take longer than others and can be waiting for a ...
2
votes
1answer
201 views

Optimal way of creating a fixed size thread pool in Java using the Executors service

I am using the Executors framework in Java to create thread pools for a multi-threaded application, and I have a question related to performance. I have an application which can work in realtime or ...

1 2 3 4 5 27