Tagged Questions

12
votes
2answers
162 views

Thread-safe implementation of max

I need to implement global object collecting statistics for web server. I have Statistics singleton, which has method addSample(long sample), which subsequently call updateMax. This has to be ...
11
votes
4answers
192 views

Strange code in java.util.concurrent.LinkedBlockingQueue

All! I found strange code in LinkedBlockingQueue: private E dequeue() { // assert takeLock.isHeldByCurrentThread(); Node<E> h = head; Node<E> first = h.next; ...
9
votes
3answers
1k views

Why is Java Future.get(timeout) Not Reliable?

Future.get(timeout) does not reliably throw the TimeoutException after the given timeout. Is this normal behavior or can I do something to make this more reliable? This test fails on my machine. ...
8
votes
6answers
2k views

java.util.concurrent vs. Boost Threads library

How does the Boost Thread libraries compare against the java.util.concurrent libraries? Performance is critical and so I would prefer to stay with C++ (although Java is a lot faster these days). ...
7
votes
4answers
9k views

java.util.ConcurrentModificationException in Non Multithreaded Program

Hey SO Guru's im having one heck of a job with this code public void kill(double GrowthRate, int Death) { int before = population.size(); for (PopulationMember p : population) { ...
6
votes
1answer
251 views

Why aren't Java.util.concurrent.TimeUnit types greater than SECONDS available in Android?

I miss MINUTES, HOURS, DAYS, which exist in documentaion since API level 1 (I use 7th or 2.1 version for the application). I have read this question, where this miss was also pointed out (though, it ...
6
votes
3answers
2k views

Implementation of BlockingQueue: What are the differences between SynchronousQueue and LinkedBlockingQueue

I see these implementation of BlockingQueue and can't understand the differences between them. My conclusion so far: I won't ever need SynchronousQueue LinkedBlockingQueue ensures FIFO, ...
6
votes
3answers
644 views

ConcurrentLinkedQueue$Node remains in heap after remove()

I have a multithreaded app writing and reading a ConcurrentLinkedQueue, which is conceptually used to back entries in a list/table. I originally used a ConcurrentHashMap for this, which worked well. ...
6
votes
2answers
1k views

is there java.concurrent.util (or equivalent) for WeakHashMap?

Can the following piece of code be rewritten w/o using Collections.synchronizedMap() yet maintaining correctness at concurrency? `Collections.synchronizedMap(new WeakHashMap<Class, ...
4
votes
5answers
115 views

What is ReentrantLock#tryLock(long,TimeUnit) doing when it tries to aquire the lock?

What is the ReentrantLock#tryLock(long,TimeUnit) implementation doing when it tries to aquire a lock ? Assume Thread A acually owns the Lock of myLock, and Thread B call myLock.tryLock(10,SECONDS), is ...
4
votes
2answers
380 views

ExecutorService awaitTermination gets stuck

I made a fixed size thread pool with Executors.newFixedThreadPool(2), and I executed 10 Runnable objects. I set breakpoints and traced through the execution. However, ...
4
votes
3answers
91 views

why CountDownLatch.getCount() returns a long but not an int?

I looked into the code, everything is int -- the parameter passed to CountDownLatch constructor is int, the variable in Sync is int, the return type of Sync.getCount() is int. But ...
4
votes
4answers
144 views

Does a HashMap with a getAndWait() method exist? E.g. a BlockingConcurrentHashMap implementation?

Many threads may populate a HashMap, in some cases I need to wait (block) until an object exists in the HashMap, such as: BlockingConcurrentHashMap map = new BlockingConcurrentHashMap(); Object x = ...
4
votes
5answers
574 views

Is there a Mutex in Java?

Is there a Mutex object in java or a way to create one? I am asking because a Semaphore object initialized with 1 permit does not help me. Think of this case: try { semaphore.acquire(); //do ...
4
votes
2answers
370 views

Single threading a task without queuing further requests

I have a requirement for a task to be executed asynchronously while discarding any further requests until the task is finished. Synchronizing the method just queues up the tasks and doesn't skip. I ...
4
votes
1answer
519 views

Guava MapMaker().weakKeys().makeMap() vs WeakHashMap

We have a Scala server that is getting a node tree using Protocol Buffers over a socket and we need to attach additional data to each node. In a single threaded context and when both the node tree ...
4
votes
3answers
2k views

Thread safe Hash Map?

I am writing an application which will return a HashMap to user. User will get reference to this MAP. On the backend, I will be running some threads which will update the Map. What I have done so ...
4
votes
1answer
432 views

ScheduledThreadPoolExecutor executing a wrong time because of CPU time discrepancy

I'm scheduling a task using a ScheduledThreadPoolExecutor object. I use the following method: public ScheduledFuture<?> schedule(Runnable command, long delay,TimeUnit unit) and set the ...
4
votes
4answers
1k views

Long primitive or AtomicLong for a counter?

I have a need for a counter of type long with the following requirements/facts: Incrementing the counter should take as little time as possible. The counter will only be written to by one thread. ...
3
votes
5answers
96 views

What's the best way in Java to implement a callable that takes a constant time to complete

To protect against password brute-forcing, and to protect against timing attacks trying to detect valid usernames, I want my login process to take a constant amount of time regardless of successful ...
3
votes
2answers
107 views

Is java.util.concurrent.Future threadsafe?

I am trying to find documentation indicating if java.util.concurrent.Future is/is not threadsafe. Eg can I safely give the same instance of Future to multiple threads, which will all call ...
3
votes
1answer
118 views

Looking for an unbounded, queue-based, concurrent implementation of java.util.Set

I'm looking for an implementation of java.util.Set with the following features: Should be concurrent by no means of synchronized locking; So it's obvious that I don't want to use ...
3
votes
4answers
575 views

Are there any drawbacks with ConcurrentHashMap?

I need a HashMap that is accessible from multiple threads. There are two simple options, using a normal HashMap and synchronizing on it or using a ConcurrentHashMap. Since ConcurrentHashMap does not ...
3
votes
5answers
998 views

Java ThreadPool usage

I'm trying to write a multithreaded web crawler. My main entry class has the following code: ExecutorService exec = Executors.newFixedThreadPool(numberOfCrawlers); while(true){ URL url = ...
3
votes
4answers
3k views

How to give name to a callable Thread?

I am executing a Callable Object using ExecutorService thread pool. I want to give a name to this thread. To be more specific, in older version I did this - Thread thread = new Thread(runnable ...
3
votes
3answers
1k views

Lock a file while writing it on the disk

I have two independant threads F1 and F2 (to be precise, two instances of java.util.concurrent.FutureTask) that are running in parallel. F1 do some processing, and then copy the result in a XML file. ...
2
votes
3answers
56 views

ConcurrentLinkedQueue with wait() and notify()

I am not well-versed in Multi-Threading. I am trying to take screenshot repeatedly by one producer thread, which adds the BufferedImage object to ConcurrentLinkedQueue and a Consumer Thread will poll ...
2
votes
2answers
121 views

Difference between Executor and ExecutorCompletionservice in java

As the question title itself says what is the difference between Executors and ExecutorCompletionService classes in java? I am new to the Threading,so if any one can explain with a piece of code, ...
2
votes
1answer
64 views

Delay notification for lock acquisition in Java

We have a use case where we need to acquire a lock and send a notification if acquiring the lock takes more than 5 mins. We should still be waiting for the lock forever. We are using re-entrant locks ...
2
votes
2answers
75 views

Are all side-effects of executor tasks visible after invokeAll?

If I submit some tasks to an Executor using invokeAll, am I guaranteed that the submitted thread sees all the side effects of the task executions, even if I don't call get() on each of the returned ...
2
votes
2answers
61 views

Scheduling a Callable at a fixed rate

I have a task that I want to run at a fixed rate. However I also need the result of the task after each execution. Here is what I tried: The task class ScheduledWork implements ...
2
votes
2answers
99 views

Why is there no “awaitTermination(Date deadline)” method?

I have a list of tasks submitted to an ExecutorService. But I need to shutdown the ExecutorService before a deadline of 2:30AM, even if the tasks are not finished. How can I achieve this? I checked ...
2
votes
4answers
118 views

Memory consistancy in java.util.concurrent

From Memory Consistancy Property, we know that: "Actions in a thread prior to placing an object into any concurrent collection happen-before actions subsequent to the access or removal of that element ...
1
vote
2answers
22 views

Get the array from an AtomicLongArray

Using Java 1.6 and the AtomicLongArray, I'd like to "copy" the original AtomicLongArray into a new one. There is a constructor that takes an array (AtomicLongArray(long[])), so I thought I could just ...
1
vote
4answers
42 views

ArrayBlockingQueue: should use to create Pool?

I'm trying to create a Pool object to reserve old objects in case of use them again (to avoid instantiation of new objects). I google that ArrayBlockingQueue and some people use it to create Pool. But ...
1
vote
0answers
27 views

Thread.setUncaughtExceptionHandler does not work

I set thread's uncaughtExceptionHandler as shown in the code below but it does not work when a HibernateException is raised in the thread running. My jvm is 1.6.0_26. Any clue? this.executor = ...
1
vote
5answers
81 views

block threads on certain conditions in java

Maybe this is a really dumb question, but please hear me out. I have a use case where I get many concurrent requests to do something for a particular input date. If there are two concurrent requests ...
1
vote
2answers
338 views

Thread.interrupt() and java.io.InterruptedIOException

I'm running Java 1.5 on Solaris 10. My program is a standalone java program, using java concurrency package and log4j-1.2.12.jar to log certain information. primary logic is as below ExecutorService ...
1
vote
3answers
83 views

Polling Multiple Threads and CPU Usage

I have a call that receives a list of jobs from the user say user posted 3 jobs A, B and C, they all start execution in their own threads AT,BT and CT, then I start monitoring these 3 threads, if one ...
1
vote
1answer
98 views

Manipulate Thread Implementation in JVM

Recently, I've been working on the deployment of concurrent objects onto multicore. In a sample, I use BlockingQueue.take() method whose specification mentions that it is blocking. It means that the ...
1
vote
1answer
49 views

Why the “next” field in ConcurrentHashMap$HashEntry is final

I'm reading reading the source code of java.util.ConcurrentHashMap and find that the next field in ConcurrentHashMap$HashEntry is final. There are two operations that is possible to modify the value ...
1
vote
4answers
334 views

Why does the iterator.hasNext not work with BlockingQueue?

I was trying to use the iterator methods on a BlockingQueue and discovered that hasNext() is non-blocking - i.e. it will not wait until more elements are added and will instead return false when there ...
1
vote
2answers
317 views

how do you “ignore” java.util.concurrent.Future objects?

Can you spot the bug? This will throw an java.lang.OutOfMemoryError. import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; public class TestTheads { public static ...
1
vote
2answers
298 views

How does java.util.concurrent.Executor work?

How does java.util.concurrent.Executor create the "real" thread? Suppose I am implementing Executor or using any executor service (like ThreadPoolExecutor). How does JVM internally work?
1
vote
3answers
485 views

is there any Concurrent LinkedHashSet in JDK6.0 or other libraries?

my code throw follow exception: java.util.ConcurrentModificationException at java.util.LinkedList$ListItr.checkForComodification(LinkedList.java:761) at ...
1
vote
3answers
344 views

java.util.concurrent: Should I synchronize to avoid visiblity issues among threads?

I wonder if when using any of the java.util.concurrent classes I still need to synchronize access on the instance so to avoid visibility issues. In short the question is: When using an instance of ...
1
vote
3answers
196 views

How to learn about Threads, Especially in Java

I have always been kind of confused by threads, and my class right now makes heavy use of them. We are using java.util.concurrent but I don't even really get the basics. UpDownLatch, Futures, ...
0
votes
1answer
33 views

Check the ThreadStackSize Progamatically?

Is there a way to check the ThreadStackSize Progamatically ? I have the following code in Jboss 7's jboss.conf file. # Java Additional Parameters wrapper.java.additional.1=-XX:MaxPermSize=512m ...
0
votes
1answer
25 views

Better way to handle Uncaught Exceptions in ForkJoinPool Tasks/action

What is the better way to handle exceptions(uncaught) while using ForkJoinPool to submit tasks (RecursiveAction or RecursiveTask)? ForkJoinPool accepts a Thread.UncaughtExceptionHandler to handle ...
0
votes
4answers
65 views

java reuse an executor

I work on a simulation system, where at each timestep, I have to simulate many models. I used a FixedThreadPool to speed up the calculation: ExecutorService executor = ...

1 2