Pooling resources in given limits and automatically assign task to open workers.
1
vote
0answers
8 views
Monitor available threads in threadpool within an asp.net application
I want to find a way to realise how many threads are available in a threadpool of an ASP.net application.
I've found this link http://msdn.microsoft.com/en-us/library/ff650682.aspx
which example ...
-1
votes
0answers
51 views
Difference between Thread, ThreadPool & BackgroundWorker c# [closed]
i many time call method with the help of thread like
static void Main( string[] args )
{
Thread t = new Thread( MyFunction );
t.Start();
}
static void MyFunction()
{
//code goes here
}
...
0
votes
0answers
33 views
ThreadPool performance overheads
I'm doing a little project which implies parallelism. I cannot use System.Threading.Threads, cause they are nearly impossible to recycle (and my job is in small pieces, so I need recycling). I didn't ...
9
votes
2answers
10k views
How to increase thread-pool threads on IIS 7.0
Environment: Windows Server 2008 Enterprise, IIS 7.0, ASP.NET 2.0 (CLR), .NET 4.0
I have an ASP.NET application with no page and no session(HttpHandler). It a streaming server. I use two threads for ...
1
vote
2answers
1k views
Thread pool using boost asio
I am trying to create a limited thread pool class using boost::asio. But I am stuck at one point can some one help me.
The only problem is the place where I should decrease counter?
code does not ...
0
votes
1answer
30 views
Java NIO Http client requests with thread pools
Thread Pool Executor uses number of threads for Future Task.
It assigns at least one thread until run() or call() returns.
So, I am confused on how to use Thread Pool for JAVA NIO HTTP requests.
1) ...
10
votes
5answers
5k views
How to implement PriorityBlockingQueue with ThreadPoolExecutor and custom tasks
I've searched a lot but could not find a solutuion to my problem.
I have my own class, BaseTask, that uses a ThreadPoolExecutor to handle tasks.
If I don't want prioritization (i.e. using a ...
1
vote
3answers
29 views
Suggestion to make my threadpool setup safe, DRY, and scalable
Right now I'm spawning 3 threads to do some concurrent work, I have it set up using Threadpooling since I want all threads to run concurrently, but have all threads complete before continuing. Here ...
2
votes
4answers
4k views
Active Thread Number in Thread Pool
When I write the below code, why do I get avaliable Thread number like 1022, 1020.
I have to get 25 thread max as I am using thread pool.
I guess the ouput thread number is the avaliable threads on ...
1
vote
1answer
29 views
Different instancens in a thread, or threadpool?
I currently have a project that starts up a central logic class (which uses some other .dll's to check on hardware or connect to the database). After that, a WPF form is started. This form uses the ...
2
votes
0answers
60 views
WaitForThreadpoolWaitCallbacks returns immediately without waiting
What am I doing wrong here that WaitForThreadpoolWaitCallbacks returns immediately without waiting?
HANDLE hEvent = CreateEvent(0, FALSE, FALSE, 0);
...
PTP_WAIT Pwa = ...
1
vote
2answers
43 views
Default TaskCreationOptions in Task.Run
Why the default value for CreationOptions of a Task created using Task.Run is DenyChildAttach rather than None?
Has it anything to do with making work with the new async and await in C# 5.0 simpler ...
0
votes
0answers
59 views
In Thrift, why does TThreadPoolServer not work with just one thread in the pool?
I wanted to measure the performance improvement of using a thread pool server relative to a completely non-threaded server, and it turned out that creating a pool of just one thread caused my server ...
1
vote
3answers
2k views
Can a java fixedThreadPool be used by multiple threads
I have a webservice that does multiple small calculations before returning the result. I want to use the ExecutorService provided by Executors.newFixedThreadPool() as a way to implement the Master - ...
1
vote
1answer
25 views
SYSTEM_UI_FLAG_LOW_PROFILE cannot be resolved or is not a field for google threadsample
I have import the threadsample code from https://developer.android.com/training/multiple-threads/index.html,
but I got errors after I import it.
They are :
SYSTEM_UI_FLAG_LOW_PROFILE cannot be ...
0
votes
0answers
37 views
AssertionError when using a Process Pool in a recursive function
I'm trying to implement quicksort using process pools in python. Mostly just for fun. My basic idea is at every recursive call, add a task to the pool to do half the work, and do half the work in ...
0
votes
0answers
44 views
What are the best practices regarding ThreadPool? Using Python multiprocessing API
I hope this is not off topic.
I am writing a python script that has a heavy workload, so I decided to use the Python multiprocessing ThreadPool API.
I am using that in this way:
pool = ...
4
votes
2answers
95 views
E-mail with no content when using the System.Threading.ThreadPool
I'm experiencing a strange behavior trying to send email using Threading.ThreadPool.
This has worked for over a year now but recently it has stated to intermittently send emails with no content. The ...
0
votes
2answers
36 views
ThreadPoolExecutor creating duplicate threads
I need to read a large csv file (328 MB) and process it .The processing of each row includes calling a Webservice also .
I am using ThreadPoolExecutor for first time . My logic is , i will spit every ...
0
votes
1answer
40 views
Thread Safe, prevent variables from updating
I have a delegate that is being executed in a threadpool. A count gets passed in correctly as a variable, however, when the program goes to return the output, The initial value passed in is now the ...
0
votes
1answer
34 views
Cancel running task started with ThreadPool.QueueUserWorkItem
We have a process that starts long-running tasks via the ThreadPool.QueueUserWorkItem command.
Each task inside, loads a new AppDomain via AppDomain.CreateDomain call, processes a bunch of stuff and ...
0
votes
5answers
301 views
Running a task in parallel to another task
I have the following Foo class that uses FooProcessor class. So what i want to do is, while running cp1 instance process method, in parallel I want to run cp2.process().
public class Foo {
...
-1
votes
2answers
51 views
Dynamically spawn/cancel threads to handle varying load
Here's a situation.
Multiple TCP requests coming from clients. Request load varies.
Currently server side threadpool instantiates fixed number of threads at program initialization.
What will be good ...
2
votes
3answers
42 views
Python - Shrinking pool of threads dynamically / Stop a thread
I am writing a small multi-threaded http file downloader and would like to be able to shrink the available threads as the code encounters errors
The errors would be specific to http errors returned ...
0
votes
2answers
48 views
What is the best approach in java to design global connection for threads? [closed]
I have one main class which runs some threads and each thread has one connection to Amazon S3 and one HTTP connection to somewhere. I cannot have inheritance in the thread class from the main class ...
3
votes
2answers
116 views
Expert opinion needed on developing a C# Windows Service which will use/create many threads
I am developing c# windows service that will be watching several files, folders and DB tables for any changes. There are three types of watchers (I call them watchers).
FileWatcher : Constantly ...
0
votes
1answer
138 views
in Tomcat thread pool executor, we will specify the thread size, right? is that thread count included in tomcat thread count?
As far as i know, when ever tomcat server is started, it will start around 250 threads.
Assume, we specify 25 is the thread size in thread pool executor. so now total threads in tomcat is 250 + 25 or ...
12
votes
4answers
2k views
Exception handling in ThreadPools
I have a ScheduledThreadPoolExecutor that seems to be eating Exceptions. I want my executor service to notify me if a submitted Runnable throws an exception.
For example, I'd like the code below to ...
0
votes
0answers
40 views
Best c++ Window platform thread pool library [closed]
I want to know the best c++ Window platform thread pool library.
What do you think?
1
vote
1answer
31 views
Can't start new thread
I'm processing all the files in a directory using multiple threads to process files in parallel. It all works fine, except that threads seem to stay alive and so the thread count of the process goes ...
0
votes
1answer
32 views
Timeout individual threads of cached thread pool
I want to use a thread pool in a web application which should support large number of users concurrently (~3000 users). I am invoking a web service in a separate thread which I am executing using a ...
0
votes
1answer
39 views
Reading data from running thread
I know java thread related questions have been asked many times, but I have not been able to piece together an answer to my question. I am still new to thread programming, so excuse my ignorance.
I ...
-1
votes
1answer
66 views
Regarding various way of calling a method [closed]
very rare i worked with thread, background worker etc but never try to know when which one we should use and how each technique works internally. so here i am asking few question regarding ...
1
vote
2answers
61 views
When doing network programming, is there a rule of thumb for determining how many threads to use?
Say I have a list of 1000 unique urls, and I need to open each one, and assert that something on the page is there. Doing this sequentially obviously is a poor choice, as most of the time the program ...
2
votes
1answer
196 views
how to pass a value to running process in python
I want to pass some values to a running process, how can I do that ?
say for example I have a worker.py and it has this code.
import os
import sys
def my_test():
print " I am starting now"
...
0
votes
1answer
31 views
why python threadpool creat daemonic threads and join them at last?
I've been reading python's threadpool module's code.
It manipulates threads in this way : All workerThreads are created as daemonic thread. And it also have a dismiss mechanism that you can safely ...
1
vote
2answers
162 views
Why we need a connection pooling for JDBC? [closed]
What are the benefits of using a JDBC connection pooling tool like DBCP or c3p0 ?
in case of a small CRUD application with one user, can we just create one connection session as a singleton ?
PS: ...
0
votes
0answers
81 views
How to implement HTTP /1.1Keep-alive feature in my web server [closed]
I am developing my web server. But I don't know how to add HTTP/1.1 Keep alive feature in my code.
My task is
I have to implement file-based multi-threaded web server with
thread-pooling ...
0
votes
3answers
383 views
Thread creation in JavaEE EJB/Web containers
I read in Adam Bien's JavaEE night hacks book that while thread creation is prohibited on EJB containers, this is not the case for web containers. He actually creates a thread pool executor in his ...
0
votes
2answers
65 views
How can i get (keys,values) from an array contentvalue in android
I speak a little english, sorry if its hard to read.
This is my problem. I did a class extending Asyntask to set values to a database.
But the paremeter i set in generic types was ContentValues.
...
2
votes
1answer
54 views
ThreadPoolExecutor backed by PriorityBlockingQueue doesn't seem to work
I have a large number of pictures to fetch from a server, and I want to fetch some pictures with higher priority than others so I've implemented my own ThreadPoolExecutor that returns a FutureTask ...
0
votes
2answers
56 views
Java - thread Pool
My scheduled thread pool--->
private static ScheduledExecutorService pendingCheckScheduler = Executors.newScheduledThreadPool(1);
Thread 1--->
private ScheduledFuture<?> ...
0
votes
1answer
32 views
How can I implement a job queue with a greedy-worker-pool in Java EE 6 in a correct way?
I'm looking for a correct way, to do the following in Java EE 6, if possible with vanilla Java EE 6 only.
I want to put a job in a job queue and have a fixed pool of worker objects, which should pull ...
0
votes
1answer
34 views
commit a Queue in threadpool
I am starting an thread using threadpool like this:
ThreadPool.QueueUserWorkItem(new WaitCallback(outp), (object)new object[] { output});
output is a Queue.
This is the caled function:
...
0
votes
0answers
31 views
How to update UI using thread in IPC mechanism of android
In one of my application project I have to get a data from JNI using AIDL interface. The AIDL interface is like below
interface IBiometricService {
int intFromJNI();
}
For above ...
1
vote
2answers
88 views
How to reset a thread pool efficiently
I'm using a thread pool to enable multiple unimportant tasks to be queued and (potentially) executed however I need to be able to easily cancel all queued and executing tasks and start a new queue ...
0
votes
1answer
183 views
Performance Issues with newFixedThreadPool vs newSingleThreadExecutor
I am trying to Benchmark our Client code. So I decided I will write a multithreading program to do the benchmarking of my client code. I am trying to measure how much time (95 Percentile) below method ...
1
vote
1answer
64 views
Wpf threadpool implementation
I have to implement validation on datatable in my project but it should be running on different background thread, not main UI thread. And once it's done it should show list of errors on screen. This ...
-2
votes
0answers
29 views
why there is no submitAll in ThreadPoolExecutor? [closed]
I am using ThreadPoolExecuter to execute callers.
In order to do it i use the submit method.
Can anyone tell me why there is no submitAll for submit callaction of callable tasks?
0
votes
2answers
325 views
Creating thumbnail of image on Windows Phone 8 in threadpool
I need to create a thumbnail of an image on WP8, and currently I'm facing difficulties. In a nutshell, I know the only one way of doing this, that is using classes System.Windows.Controls.Image, ...







