ExecutorService is a Java object containing the managed pool of threads and capable of scheduling the submitted tasks for these threads. The scheduling strategies vary in multiple available implementations.
1
vote
2answers
42 views
Execution context without daemon threads for futures
I am having trouble with the JVM immediately exiting using various new applications I wrote which spawn processes through the Scala 2.10 Futures + Promises framework.
It seems that at least with the ...
1
vote
2answers
60 views
Tracking Completed Tasks in ExecutorService
I'm writing an application in Java which uses ExecutorService for running multiple threads.
I wish to submit multiple tasks (thousands at a time) to the Executor as Callables and when done, retrieve ...
1
vote
3answers
26 views
Java - get errors propagated from background thread
I am trying to run a background service as part of my GUI application. I am using an ExecutorService and I am getting a Future back from it. This code shows what I am doing:
play.addActionListener( ...
1
vote
4answers
39 views
How to wait for all callables to finish executing before proceeding?
I have the following code hashed out:
public class MyCallable implements Callable<Long> {
@Override
public Long call() throws Exception {
// Do stuff...
}
}
public class ...
0
votes
1answer
41 views
Odd behavior with Runnable and ExecutorService
I'm getting some really weird behavior with multithreading. I have two classes: DipoleTester and Dipole.
DipoleTester attempts to create several Dipole objects, and then run them asynchronously. The ...
3
votes
4answers
72 views
Java's ExecutorService performance
I have a main thread which dispatches jobs to a thread pool. I'm using Java's Executor framework.
From the profiler (VirtualVM) I can see each thread's activity: I can see that the main thread is ...
1
vote
2answers
52 views
Stopping a Timer Task from within a Runnable thread when shutdown
I have a TimerTask that gets started as the first thing in my run() method of my Runnable class. I want to make sure that it gets stopped when the runnable is shutdown.
The runnable is started via ...
0
votes
1answer
63 views
Java Multithread stopping all other threads immediately
I have this code:
public class BruteForceThread implements Callable<String> {
private static volatile boolean stopped = false;
public String call() {
String password = ...
-1
votes
1answer
35 views
How to setup Socket Server on Java [closed]
I stuck at socket server. I need to make master server and clients (computers) to connect on server. They need to stay connected and from time to time master server needs to send some data on to ...
1
vote
0answers
29 views
ThreadPoolExecutor.worker.run spends too much time
I have several tasks that executed in CachedThreadPool. After some profiling I found that the task itself runs only 10% of time and other 90% are used by threadpoolexecutor$worker.run (I'm using ...
0
votes
1answer
37 views
How to build a throttled ExecutorService
Here's my problem:
I have a long-running calculation (let's call it the "task") performed after receiving an event.
The events tell me that there is more data to process. The event includes an ...
0
votes
2answers
46 views
Efficient way to wait for completion of Runnable tasks in ExecutorService
I have n-number of Runnable tasks (not Callable) that I am executing with ExecutorService.
I want to wait for all the tasks to complete.
I can't use invokeAll - because it works for collection of ...
1
vote
0answers
23 views
When to shutdown executorservice in android application
Lets assume I'm planning to use one executorservice in my entire application, to which I'm sending new runnable's or callable's to execute/submit, and I ommit to shutdown right after I do that. I just ...
0
votes
3answers
31 views
Executor shutdownNow with blocked tasks?
I am using Executors for thread pool, and submitting tasks. Can executorService.shutdownNow will shutdown all the tasks even though some of them may be blocked on I/O calls to database or Socket?
0
votes
1answer
68 views
Looking for ExecutorService with thread pool & minimal schedule latency [closed]
Looking for ExecutorService like FixedThreadPool or ForkJoinPool but with minimal latency for adding tasks to work queue and dequeueing them for execution.
Highly desired for it to be CPU cache aware ...
2
votes
3answers
45 views
Does a Future timeout kill the Thread execution
When using an ExecutorService and Future objects (when submitting Runnable tasks), if I specify a timeout value to the future's get function, does the underlying thread get killed when a ...
0
votes
2answers
60 views
Number of tasks completed while executor is still running
Is there any way to find the number of tasks completed after a call to invokeAll()? It seems that that returns the list of booleans of completed tasks when all of the threads are completed.
I have ...
1
vote
2answers
49 views
ThreadFactory and newThread(Runnable r) how to access to the attributes of r if it is a Thread?
For my thesis I'm working on a Discrete Event System Simulator. The simulation consists in a set of SimulatorThread extends Thread whose action consist in scheduling Events to the Simulator. Each ...
2
votes
3answers
70 views
ExectuorService vs ThreadPoolExecutor (which is using LinkedBlockingQueue)
I am working on a Multithreaded project in which I need to spawn mulitple threads to measure the end to end performance of my client code as I am doing Load and Performance testing. So I created below ...
2
votes
3answers
88 views
How does newCachedThreadPool cache thread
Per the comment of method public static ExecutorService newCachedThreadPool() in Executor Class:
Threads that have not been used for sixty seconds are terminated and
removed from the **cache**.
I ...
1
vote
1answer
47 views
How to deal with non-interruptible blocking (ExecutorService)
I want to resolve some DNS tasks using the ExecutorService framework.
I use java API for the DNS queries:
1/ java.net.InetSocketAddress.InetSocketAddress(String, int) - name lookup
2/ ...
1
vote
0answers
59 views
Reason for calling shutdown() on ExecutorService
I was reading about it quite a bit in past couple hours, and I simply cannot see any reason (valid reason) to call shutdown() on the ExecutorService, unless we have a humongous application which ...
0
votes
2answers
45 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 ...
0
votes
1answer
32 views
ExecutorService: calling future.get(long, TimeUnit) does not cause the queued Callable to run
I try to implement an asynchronous DNS resolver by calling all the routines that perform a DNS query in a separate thread using ThreadPoolExecutor.
I define Callable object like this:
public class ...
-1
votes
2answers
63 views
Interactive Java Software Architecture [closed]
We designed a software architecture a while ago which processed transactions. It worked like this: Incoming events, based on their type, were translated into Callable's which then run into an Executor ...
1
vote
1answer
60 views
ClassLoader finds Resource only in specific Threads
I am struggling with a situation in which a ClassLoader is trying to resolve a resource, which only works under certain conditions.
The use-case is as follows: I am using IBM Rational Functional ...
0
votes
2answers
90 views
Tracking concurrent file processing in Java web app
I have a Java 1.5 web application that converts arbitrary PDF files to images. It takes too long to process all pages of even a single PDF in one shot, so I want to process pages on demand.
I've read ...
0
votes
0answers
25 views
Asynctask speed vs same process in ExecutorService [duplicate]
My app is required to scan a subnet for responding devices (and check port 80/8080 for a specific service). I was using an executorservice/threadpool to complete the scan task - which took approx 30 ...
1
vote
1answer
53 views
Runnable or Executor Service
Which is easier and more suitable to use for running things in another thread, notably so that the program waits for the result but doesn't lock up an ui.
There may be a method that is better than ...
0
votes
3answers
160 views
How to check if a thread is running in the ExecutorService Thread pool
How do i check if a thread is running in the pool of thread ExecutorService?
Background:
I want to synchronize between the threads in the Thread pool if there is a flag set.
So if the flag is set ...
0
votes
1answer
65 views
Catching Exceptions from (ExecutorService) CachedThreadPool
We are using a CachedThreadPool created via the ExecutorService#newCachedThreadPool. (Java 1.6). We are getting errors elsewhere in our code: "unable to create new native thread" which we've diagnosed ...
1
vote
4answers
73 views
Writing Files using Executor in Java
I have a List<Map<String,String>> ie; List of Maps. Each Map has File Name as Key and File Content as Value.
I have more than 25 Lakh Maps in above List. My requirement is to iterate ...
2
votes
2answers
124 views
How to stop all runnable thread in java executor class?
final ExecutorService executor = Executors.newFixedThreadPool(1);
final Future<?> future = executor.submit(myRunnable);
executor.shutdown();
if(executor.awaitTermination(10, TimeUnit.SECONDS)) {
...
0
votes
1answer
41 views
How to catch errors instantly when running multiple threads with executors?
The second thread in my code will throw a divide by 0 exception, but I will only catch it after the first thread finished. The first thread could run for days, so that means that I will only catch my ...
0
votes
1answer
61 views
ExecutorService doesn't call run() in Runnable
I've come across a strange issue in the asmack library for Android. The library uses an ExecutorService to parse incoming packets like that:
private ExecutorService listenerExecutor;
...
1
vote
1answer
46 views
Dynamically changing the command list submitted to Executor service
I want to change the list of commands submitted to the executor service at runtime. Has anyone tried doing that? Can multiple commands be submitted via a single executor service instance? Can the list ...
4
votes
2answers
110 views
ScheduledExecuterService.scheduleAtFixedRate creating multiple thread pools - Android
I have a AsyncTask called UploadManager in my Android Application, that checks for processed items, and uploads them to the server.
For this purpose I'm using the ...
0
votes
1answer
35 views
Callable and Networkmainthread Error
I'm doing some networking operation and as you know with honeycomb they should be done on another thread instead UIthread otherwise it gives networkmainthread error. In my case I have to get return ...
0
votes
3answers
48 views
Interrupt when waiting on a blocking queue
I have a Runnable that runs from an Executor.
The runnable is blocked waiting in an SychronousQueue.take. How can I make sure the take will be interrupted when I do executor.shutdown?
0
votes
0answers
139 views
Android executor service not running all my executor threads
executor not running all my threads!
I have around ~800+ threads
my executor is set for a fixed size of 5
executor = Executors.newFixedThreadPool(5);
How i use them:
numberofthreadsRequested++;
...
1
vote
1answer
107 views
How to stop executor service threads even when their task is not completed?
I started some threads using Executor Service for getting some files from network.I want the Threads to stop execution after some time duration even if their run method is not completed.
How to do ...
0
votes
3answers
104 views
Total time taken and Average time taken by all the threads
I am working on a project in which I need to measure Total Time taken by program and average time taken by program. And that program is a Multithreaded program.
In that program, each thread is ...
6
votes
1answer
110 views
Concurrency issue between waiting for a process and reading the stream?
I use a ProcessBuilder to run processes. I handle Input/Output streams by submitting the corresponding runnables handling them in a thread pool (Executors.newCachedThreadPool()).
I get the result but ...
0
votes
1answer
65 views
Abort countDownLatch.await() after time out
I am using an ExecutorService to implement a 3-thread pool, and CountDownLatch to monitor the completion of all threads, for further processing.
ExecutorService threadExecutor = ...
0
votes
0answers
40 views
Benchmarking Geocoding API
I am trying to benchmark Google Geocoding API just to get an idea what Kind of latency I should be expecting in terms of response that I am going to get back from Google Geocoding API. Below is my ...
0
votes
0answers
148 views
How to avoid optimistic lock exception
I am trying to mock the webservice call,and developed a sample client which forms a dummy request and gets response
now what i do is i implement callable in this client class and put all my business ...
2
votes
2answers
183 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.
...
0
votes
4answers
61 views
Java ServiceExecutor terminating condition
I'm new to java executor stuff.
I'm using Java's ExecutorService to launch several threads to process data.
Executor executor = Executors.newFixedThreadPool(poolSize);
for(int i=0; i< 5;i++) ...
0
votes
4answers
82 views
How can I know if a task submitted to executor threw exception?
If I run a thread in a ExecutorService is there a way to know that this thread did not throw an exception when it started execution?
1
vote
1answer
57 views
How can I give a “hint” on what time unit to use?
I have a class that schedules tasks via a scheduled executor.
I want the class to be parameterized on the TimeUnit. I mean I want to be able to construct the class with the delays etc for the thread ...

