Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
320 views

Are there any concurrent containers in C++11?

In particular, I am looking for a blocking queue. Is there such a thing in C++11? If not, what are my other options? I really don't want to go down to the thread level myself anymore. Way too ...
7
votes
2answers
1k views

Is adding tasks to BlockingQueue of ThreadPoolExecutor advisable?

The JavaDoc for ThreadPoolExecutor is unclear on whether it is acceptable to add tasks directly to the BlockingQueue backing the executor. The docs say calling executor.getQueue() is "intended ...
5
votes
7answers
490 views

“Closing” a blocking queue

I’m using java.util.concurrent.BlockingQueue in a very simple producer-consumer scenario. E.g. this pseudo code depicts the consumer part: class QueueConsumer implements Runnable { @Override ...
5
votes
4answers
505 views

ThreadPoolExecutor policy

I'm trying to use a ThreadPoolExecutor to schedule tasks, but running into some problems with its policies. Here's its stated behavior: If fewer than corePoolSize threads are running, the Executor ...
5
votes
3answers
466 views

How to immediately release threads waiting on a BlockingQueue

Consider a BlockingQueue and a few threads waiting on poll(long, TimeUnit) (possibly also on on take()). Now the queue is empty and it is desired to notify the waiting threads that they can stop ...
4
votes
1answer
57 views

Should I explicitly wake a thread sucking on BlockingQueue.take() for performance?

I understand that having a thread sucking for elements of a BlockingQueue using the take() method will wait for an element to be available (unless it is interrupted). I have two questions: i) Is the ...
4
votes
2answers
134 views

Being asynchronously notified of a BlockingQueue having an item available

I need an Object to be asynchronously notified when some BlockingQueue has got an item to give. I've searched both Javadoc and the web for a pre-made solution, then I ended up with a (maybe naive) ...
4
votes
6answers
891 views

java BlockingQueue does not have a blocking peek?

I have a blocking queue of objects. I want to write a thread that blocks till there is a object on the queue. Similar to the functionality provided by BlockingQueue.take(). However, since I do not ...
3
votes
3answers
152 views

Blocking queue race condition?

I'm trying to implement a high performance blocking queue backed by a circular buffer on top of pthreads, semaphore.h and gcc atomic builtins. The queue needs to handle multiple simulataneous readers ...
3
votes
1answer
125 views

LinkedBlockingQueue and primitives

I have need for a LinkedBlockingQueue but what I am passing primitives to it. My data rates for adding to the Queue are about 4ms or 256 data points per sec. The issue that I am having is the data ...
3
votes
2answers
442 views

Are there any implementations of concurrent lock-free blocking queues?

I'm aware of blocking-queues and lock-free queues, a great example of those implementations being provided by Scott et al., but are there any implementations of a lock-free-blocking-queue? In a ...
3
votes
3answers
1k views

C++ pthread blocking queue deadlock (I think)

I am having a problem with pthreads where i think i am getting a deadlock. I have created a blocking queue which I thought was working, but after doing some more testing I have found that if i try and ...
3
votes
4answers
243 views

Java's BlockingQueue design question

the method java.util.concurrent.BlockingQueue.add(E e)'s JavaDoc reads: boolean add(E e) Inserts the specified element into this queue if it is possible to do so immediately without ...
3
votes
2answers
118 views

BlockingQueue decorator that logs removed objects

I have a BlockingQueue implementation that's being used in a producer-consumer situation. I would like to decorate this queue so that every object that's taken from it is logged. I know what the ...
2
votes
4answers
50 views

Blocking queue and multi-threaded consumer, how to know when to stop

I have a single thread producer which creates some task objects which are then added into an ArrayBlockingQueue (which is of fixed size). I also start a multi-threaded consumer. This is build as a ...
2
votes
4answers
81 views

Java: NullPointerException when trying to add object to BlockingQueue?

I found a similar question about a PriorityQueue, the error with that one was that it wasn't initialized correctly. I might have the same problem, but i can't figure out how to initialize it ...
2
votes
2answers
199 views

Thread-safety of BlockingQueue's drainTo() method

Documentation of BlockingQueue says bulk operations are not thread-safe, though it doesn't explicitly mention the method drainTo(). BlockingQueue implementations are thread-safe. All queuing ...
2
votes
1answer
255 views

Thousands of threads spawned from Java process… why?

I have a problem with a recent customer migration to Linux (64-bit) when running a Java process. The process is spawning thousands of threads most with an identifier of futex. I've looked up futex ...
2
votes
3answers
2k views

producer/consumer work queues

I'm wrestling with the best way to implement my processing pipeline. My producers feed work to a BlockingQueue. On the consumer side, I poll the queue, wrap what I get in a Runnable task, and submit ...
2
votes
4answers
2k views

ScheduledExecutorService with variable delay

Suppose I have a task that is pulling elements from a java.util.concurrent.BlockingQueue and processing them. public void scheduleTask(int delay, TimeUnit timeUnit) { ...
1
vote
2answers
84 views

When should I use SynchronousQueue

new SynchronousQueue() new LinkedBlockingQueue(1) What is the difference? When I should use SynchronousQueue against LinkedBlockingQueue with capacity 1? As far as I understand code above do the ...
1
vote
2answers
59 views

Java measure utilization of threads

I have a blocking queue and workers taking from that queue and then working for around 1-10ms. I would like to figure out some relative figure of how much time the worker was active and idle in a ...
1
vote
1answer
79 views

JUnit test for BlockingQueue interface

Is there already some existing JUnit test for testing a BlockingQueue interface? Some class I can download, press play and then it turns red (hopefully green :-)), without me having to spend a day ...
1
vote
2answers
59 views

Concurrent version of Queue needs exceptions

I am writing a custom queue implementing the queue interface. This implementation is thread safe and blocks on certain occasions. The normal Queue interface does not mention Exceptions, therefore I ...
1
vote
2answers
76 views

concurrent application not as fast as a singlethreaded

I've implemented a pipeline approach. I'm going to traverse a tree and I need certain values which aren't available beforehand... so I have to traverse the tree in parallel (or before) and once more ...
1
vote
2answers
97 views

Observer - BlockingQueue

I'm using the observer pattern and a BlockingQueue to add some instances. Now in another method I'm using the queue, but it seems take() is waiting forever, even though I'm doing it like this: /** ...
1
vote
2answers
82 views

producer-consumer: how to know inform that prodcution completed

i have the following situation: Read data from database do work "calculation" write result to database I have a thread that reads from the database and puts the generated objects into a ...
1
vote
2answers
63 views

Concurrent put calls on a BlockingQueue in Java

I know that concurrent adds to an stl queue in c++ can cause issues, and the way to solve this is adding a mutex lock around all add/remove calls. But I am programming in Java at the moment, and I'm ...
1
vote
2answers
156 views

Blocking Queue implementation: Where's the race condition?

It's me and my BlockingQueue again... I rewrote it according to this article and this question. It sends some items and then crashes with an access violation. Here's the code: template <typename ...
1
vote
2answers
103 views

Re-sizeable Java BlockingQueue

So I am using a fixed sized BlockingQueue [ArrayBlockingQueue] in a producer/consumer type application, but I want the user to be able to change the queue size on the fly. Problem is there is not a ...
1
vote
1answer
154 views

Read lines from Socket and put each into BlockingQueue

Can anyone provide examples in Java, or advise about implementing a class which asynchronously reads lines from a socket and puts each line into a BlockingQueue. Assume the socket is connected, and ...
1
vote
3answers
455 views

Is JMS the answer to the need for a persistent blocking queue?

I'm creating a library that consists of a Log4J appender that asynchronously sends events to a remote server. When a log statement is made, the appender will asynchronously record the event into a ...
1
vote
4answers
476 views

ThreadPoolExecutor - ArrayBlockingQueue … to wait before it removes an element form the Queue

I am trying to Tune a thread which does the following: A thread pool with just 1 thread [CorePoolSize =0, maxPoolSize = 1] The Queue used is a ArrayBlockingQueue: ...
1
vote
1answer
130 views

Reading from multiple BlockingQueues within a single thread

I have three Java's LinkedBlockingQueue instances and I'd like to read from them (take operation) only using one thread. The naive approach is to have one thread per queue. Is there anything like the ...
1
vote
4answers
380 views

how to terminate retrieval from a blocking queue

I have some code where i execute a several tasks using Executors and a Blocking Queue. The results have to be returned as an iterator because that is what the application that i work on expects. ...
0
votes
2answers
82 views

Java BlockingQueue blocking on take(), with a slight twist

I have a situation where I have 2 blocking queues. The first I insert some tasks that I execute. When each task completes, it adds a task to the second queue, where they are executed. So my first ...
0
votes
1answer
37 views

Implementing BlockingQueue Buffer used in Bluetooth Communication for Android

I'm really stumped with this and I've trying to debug for the passed three days. Hopefully someone will be able to tell me what I am doing wrong. I am implementing a BlockingQueue (FIFO) buffer to ...
0
votes
1answer
45 views

Creating a Buffer Class Using a Blocking Queue in Android

I am currently trying to implement a class to use as a buffer for incoming data over a bluetooth connection: public class IncomingBuffer { private static final String TAG = "IncomingBuffer"; ...
0
votes
2answers
101 views

Java: Concurrently removing objects from queues.

I have an application that creates hundreds of instances of some objects B and C. There is an object hierarchy where object Foo contains 2 queues (b_queue and c_queue), one filled with objects of ...
0
votes
2answers
174 views

Analysing a BlockingQueue usage example

I was looking at the "usage example based on a typical producer-consumer scenario" at: http://download.oracle.com/javase/1.5.0/docs/api/java/util/concurrent/BlockingQueue.html#put(E) Is the example ...
0
votes
1answer
232 views

How to use java notify correctly in blocking queue implementation

I am trying to understand Java multi-threading constructs, and I am trying to write a simple implementation of blocking queue. Here is the code I have written: class BlockingBoundedQueue<E> ...
0
votes
3answers
239 views

Java - LinkedBlockingQueue problem

1 LinkedBlockingQueue queJobs = new LinkedBlockingQueue(150); 2 .......... 3 .. Some other code.... 4 .......... 5 Job curJob = queJobs.take(); 6 .................... ...
0
votes
1answer
272 views

LinkedBlockingQueue thowing InterruptedException

I have this piece of code. A LinkedBlockingQueue should only throw an Exception if interrupted while waiting to add to the queue. But this queue is unbounded so it should add asap. Why does my ...
0
votes
2answers
78 views

Updating an custom Object stored in blocking priority queue

I have a blocking priority queue which stores Objects of type Message, message has String[] data = new String[10]. Now I have to iterate over whole blocking Queue, check if its Object message's 2nd ...
0
votes
2answers
1k views

Java: Producer/Consumer using BlockingQueue: having the consumer thread wait() until another object is queued

I've been having some thread related problems recently with a consumer that takes points. Here is the original, which works fine except for taking up a lot of cpu constantly checking the queue. The ...
0
votes
2answers
370 views

Does ThreadPoolExecutor spawns a new thread if a current thread sleeps

This question is a followup on this one. Essentially what I am doing is declaring a ThreadPoolExecutor with just one thread. I am overriding the beforeExecute() method to put a sleep so that each of ...
0
votes
4answers
675 views

A bounded BlockingQueue that doesn't block

The title of this question makes me doubt if this exist, but still: I'm interested in whether there is an implemented of Java's BlockingQueue, that is bounded by size, and never blocks, but rather ...