Tagged Questions
0
votes
1answer
29 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) ...
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
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 ...
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 ...
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
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
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
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 ...
-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?
1
vote
2answers
160 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
2answers
40 views
cachedThreadPool not working as I expected
I'm playing around with threads and I don't understand why this isn't working as I thought.
I am trying to calculate a sum using threads and was expecting for the thread pool to wait for all tasks ...
4
votes
3answers
74 views
When would you want to use two cached thread pools?
Consider this example from a Netty tutorial (although it's not the only example of it I've seen):
Executor bossPool = Executors.newCachedThreadPool();
Executor workerPool = ...
0
votes
1answer
70 views
How to increase Jetty threadpool size with jetty-runner on Heroku?
I have a Java (Spring MVC) webapp running on Heroku. It uses the setup described in this article:
Getting Started with Spring MVC Hibernate on Heroku
It looks like Jetty by default uses just one ...
2
votes
2answers
34 views
Limit concurrent resource usage in a Java EE application
There is a Java EE application where we have batches of jobs to process. Processing involves calling an external service that has a limitation so that we can send only N number of requests ...
0
votes
2answers
68 views
How to apply java ExecutorService and Executors class here
I want to use thread pool in option 2 to replace code in option 1. How can I achieve that?
1
1. Using Join
Thread e1 = new Thread(new EventThread("e1"));
e1.start();
Thread e2 = new Thread(new ...
0
votes
3answers
136 views
How do i run a method after a delay?
I have a question regarding calling methods after a certain amount of delay.
I want to call a Java method exampleFunction() after a delay of about 10 seconds. I have looked for solutions online and ...
0
votes
1answer
64 views
meaning of 'core pool size' in ScheduledThreadPoolExecutor's constructor
I'm new to ScheduledThreadPoolExecutor (as I usually use the simple Timer, but people have been advising against it), and I don't quite understand what would be the appropriate integer value to pass ...
1
vote
0answers
122 views
Tomcat doesn't shutdown because failed to stop thread
When trying to shutdown tomcat 6.0.36 it doesn't shutdown with message
11-Mar-2013 16:10:52 org.apache.catalina.loader.WebappClassLoader clearReferencesThreads
SEVERE: The web application [/app] ...
0
votes
0answers
33 views
ThreadPoolExecutor unable to utilize the core pool capacity
I have created a threadpool where corePoolSize and maxpoolsize are equal with BlockingQueue as queue and without any rejection handler.
Now when I run my program I am encountering a situation where:
...
4
votes
1answer
117 views
ThreadPoolExecutor with unbounded queue not creating new threads
My ThreadPoolExecutor is failing to create new threads. In fact I wrote a somewhat hacky LinkedBlockingQueue that will accept any task (i.e. it is unbounded) but call an additional handler - which in ...
1
vote
4answers
102 views
Upgrading old thread-pool code to new concurrency classes
I am in the process of updating some old Java code which I haven't touched in ages. My question relates to what is the best way to do thread pools now?
Previously I used the concurrency util class's:
...
0
votes
2answers
78 views
Implementing the Nagel-Schreckenberg model in Java
For every given car in a traffic simulation, the Nagel-Schreckenberg model specifies that the following four steps must be applied to all cars in the simulation, in parallel in the stated order below ...
0
votes
0answers
110 views
Java performance: why multithread is worse then no-multithread? [closed]
I wrote a program for study the performance of the multithreading in Java.
public class TestParallelo {
static int numCore = 4;
/**
* @param args the command line arguments
*/
public static void ...
1
vote
2answers
166 views
Threads throwing RuntimeException - Impact on Threadpool
I just read this article and thought that threadpool may run out of worker threads if the Runnable's throw exception and exit. I did a small code and checked, but the poolsize didn't vary.
public ...
1
vote
1answer
92 views
How many threads should I use to render an image?
I've seen very similar questions about, but none seem to offer any scientific evaluation. My problem is that I want to optimize the number of threads being used in my Java thread pool for a fractal ...
-3
votes
2answers
54 views
newFixedthreadpool client-server [closed]
I have the following code, and I want to be able to use multiple threads to handle the sockets, using a fixed thread pool (e.g. Executors.newFixedThreadPool())
How can I restructure the code to make ...
1
vote
3answers
90 views
How to use a thread pool and rejoin threads in java?
So the thing is I have an object that does a computationally intensive task.
Assume the main class had two of these objects, I parallelized the process as following.
Thread t1 = new Thread(new ...
2
votes
2answers
172 views
Adding Thread in ThreadPool in Executor Service
I am working on a Multithreading Program in which I am trying to make sure each Thread is running for 30 minutes. Suppose if we have 10 threads then each thread out of 10 should run for 30 minutes.
...
4
votes
2answers
132 views
Change queue size of a ThreadPoolExecutor
I need to be able to change the size of the task queue of a ThreadPoolExecutor. Of course, the BlockingQueue doesn't support changing the size, and the ThreadPoolExecutor doesn't support changing 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 ...
-1
votes
6answers
93 views
ThreadPoolExecutor Running Application [closed]
Billing class has all the logic related with Country wise billing. It takes result from database and then bills users. Billing class implements Runnable. I want to execute Billing parallelly according ...
1
vote
1answer
56 views
Blackberry thread pool not working well
I'm developing a thread pool in java for blackberry, this is the code I currently have:
public class ThreadPool {
int maxWorkers = 15;
Vector queue = new Vector();
Thread[] workers;
...
0
votes
0answers
82 views
Tomcat6 thread issue
Hello frnds,
We have migrated out application in tomcat6. We are facing issues our site is going down after some time. from logs
it seems that all the threads in waiting state
threads are not ...
0
votes
1answer
143 views
Java Concurrent Object Pool?
I tried to integrate an external non-thread-safe library to my web project; I found out that it's too expensive to create an instance of this object for each client thread.
As a result, I would like ...
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 ...
5
votes
2answers
152 views
Does Java provide an ExecutorService which allows a worker to execute on the same thread?
I am looking for an implementation of ExecutorService which will provide the following semantics. Each thread is occupied by a 'worker' that performs some task based on an input. Each worker is ...
0
votes
0answers
69 views
Request to a Threadpool from a thread
I need to make an application that generates a list containing the following characters: H,A,O,*,#,@. The last two are control characters. The "#" makes the list divide in two (like a tree) and each ...
0
votes
0answers
118 views
Threads in newCachedThreadPool() are always waiting and the thread count is always increasing
I meet a problem that tomcat throws OutOfMemoryError:
SEVERE: Servlet.service() for servlet DataPortServlet threw exception
java.lang.OutOfMemoryError: unable to create new native thread
at ...
1
vote
1answer
151 views
GenericObjectPool threshold
The GenericObjectPool is configured for 12 Threads. Once 12 threads are exhausted, I find the caller thread goes zombie. I think default behaviour is to enqueue extra requests and serve once available ...
1
vote
2answers
75 views
Do ThreadPoolExecutors that create daemon threads require shutdown?
This seemed to happen in my application but was almost certainly the result of something else going on in my Maven / JUnit test case environment (on code I haven't even fully read - maintaining a ...
0
votes
0answers
33 views
How to set the cyclic Barrier for this Class
How to handle this, While I try to poll and update my database for the following classes using thread pools.
The Run method for Polling class:
public void run() {
int seqId = 0;
...
1
vote
3answers
347 views
Executor service in java--> how to convert single thread code to use executor
Pardon me if the question sounds silly - I am just starting to use Executor.
I have an existing java app that uses threads in this manner-- basically standalone threads are used--
private Thread ...
0
votes
0answers
258 views
How to make sure quartz.properties is being used?
I set following properties in my quartz.properties file:
org.quartz.threadPool.threadCount = 60
org.quartz.scheduler.batchTriggerAcquisitionMaxCount = 60
, however, for some reason, apparently it ...
2
votes
1answer
70 views
How to get more performance in newfixedthreadpool?
My English is not good. but I need to know about newfixedthreadpool's .
enter code here
ExecutorService executorService = new FixedThreadPool().newFixedThreadPool(4);
.....
public class ...
3
votes
2answers
76 views
Is there a Python library equivalent of the Java's FixedThreadPool?
Is there a simple ThreadPool library in Python that has, for example, pool.execute(function, args) method, which should be blocked when the pool is full (until one of the threads becomes free)?
I ...
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
3answers
82 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
0answers
88 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 ...


