Tagged Questions
The producer-consumer tag has no wiki summary.
8
votes
4answers
451 views
Efficient consumer thread with multiple producers
I am trying to make a producer/consumer thread situation more efficient by skipping expensive event operations if necessary with something like:
//cas(variable, compare, set) is atomic compare and ...
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 ...
7
votes
1answer
224 views
“The usage of semaphores is subtly wrong”
This past semester I was taking an OS practicum in C, in which the first project involved making a threads package, then writing a multiple producer-consumer program to demonstrate the functionality. ...
7
votes
2answers
4k views
Python - simple reading lines from a pipe
I'm trying to read lines from a pipe and process them, but I'm doing something silly and I can't figure out what. The producer is going to keep producing lines indefinitely, like this:
producer.py
...
7
votes
3answers
2k views
Generic .Net Producer/Consumer
I'm toying with the idea of implementing a generic Producer/Consumer pair + processing queue in C# for fun. The idea is you can just create objects that implement appropriate IProducer and IConsumer ...
6
votes
5answers
248 views
Multi-threading to speed up an email-sending application
I have built an application to send email mailers for a website through Amazon SES. It is coded in C#.
Each email takes .3 seconds to send via the Amazon SES API.
That means, using a single-threaded ...
6
votes
3answers
105 views
Java: Producer-consumer inter-thread communication
having trouble with inter-thread communication and "solved" it by using "dummy messages" all over the place. Is this a bad idea? What are possible solutions?
Example Problem i have.
main thread ...
6
votes
1answer
310 views
C++ Producer consumer queue with (very) fast and reliable handover
Hi I am looking into having thread handover using a fast and reliable producer consumer queue. I am working on Windows with VC++.
I based my design on Anthony Williams queue, that is, basically a ...
5
votes
3answers
168 views
Algorithm for .NET consumer thread processing of two queues (based on priority)
I have a C# 4.0 app with "high priority" and "low priority" queues implemented as such:
BlockingCollection highPriority = new BlockingCollection(1000);
BlockingCollection lowPriority = new ...
5
votes
2answers
462 views
C# producer/consumer / observer?
I have a producer / consumer queue, except that there are specific types of objects. So not just any consumer can consume an added object. I don't want to make a specific queue for each type, as there ...
5
votes
2answers
369 views
Buffered Background InputStream Implementations
I've written background InputStream (and OutputStream) implementations that wrap other streams, and read ahead on a background thread, primarily allowing for decompression/compression to happen in ...
5
votes
7answers
3k views
How to implement blocking read using POSIX threads
I would like to implement a producer/consumer scenario that obeys interfaces that are roughly:
class Consumer {
private:
vector<char> read(size_t n) {
// If the internal buffer has ...
4
votes
4answers
84 views
Producer/consumer of a web crawler using queue with unknown size
I need to crawl parent web pages and its children web pages and I followed the producer/consumer concept from http://www.albahari.com/threading/part4.aspx#%5FWait%5Fand%5FPulse. Also, I used 5 threads ...
4
votes
6answers
1k views
Is this Python producer-consumer lockless approach thread-safe?
I recently wrote a program that used a simple producer/consumer pattern. It initially had a bug related to improper use of threading.Lock that I eventually fixed. But it made me think whether it's ...
4
votes
2answers
2k views
Java thread wait and notify
I have two threads. Thread A is pulling some elements from queue and thread B is adding some elements to the queue.
I want thread A to go to sleep when the queue is empty.
When thread B adds some ...
3
votes
1answer
58 views
Confused on producer-consumer solution (synchronization clarification)
I've been learning about concurrency in Java, and I came across the producer-consumer problem. It's apparently standard, and I've seen a near identical answer in many places.
public synchronized ...
3
votes
4answers
111 views
Create different Objects with same base type. Factory pattern?
I have to implement a multiple producers / multiple consumers example application for a university course and have a hard time to find a solution for the following problem, that doesn't make me feel, ...
3
votes
2answers
108 views
How to develop an application similar to producer consumer in java?
I have to develop an application that is similar to the producer-consumer problem in java.
However I do not know a lot about java, and I have a couple of questions.
Both the producer and consumer ...
3
votes
4answers
334 views
C++ Templated Producer-Consumer BlockingQueue, unbounded buffer: How do I end elegantly?
I wrote a BlockingQueue in order to communicate two threads. You could say it follows the Producer-Consumer pattern, with an unbounded buffer. Therefore, I implemented it using a Critical Section and ...
3
votes
5answers
188 views
How to do recursive search of Folders & Files using producer/consumer queues?
I would like to search first for directory then the files inside it, for a keyword.
I know I need two classes, Producer class & Consumer class, but i do not know how to search using by c# ...
3
votes
6answers
115 views
Shouldn't this fail without the use of locking? Simple producer consumer
I have a queue, a list with producer threads and a list with consumer threads.
My code looks like this
public class Runner
{
List<Thread> Producers;
List<Thread> Consumers;
...
3
votes
2answers
152 views
Choosing a data structure for a variant of producer consumer problem
Right now, I have a queue, with multiple producers and single consumer.
Consumer thread operation is slow. Also, consumer takes element from queue through a peek operation, and until the consumption ...
3
votes
1answer
190 views
What is offered by coroutines in python that improve a naive consumer/producer setup?
I've read a little about coroutines, in particular with python, and something is not entirely obvious to me.
I have implemented a producer/consumer model, a basic version of which is as follows:
...
3
votes
5answers
213 views
Producer and consumer with notifications in C#
I have a producer (P) which pushes items into a consumer (C). C may decide not to consume all the items as soon as they arrive; instead it may asynchronously wait until there are n items in the queue ...
3
votes
4answers
727 views
Multiple producers, single consumer
I have to Develop a multithreaded application, where there will be multiple thread,each thread generates custom event log and need to saved in saved in queue (not microsoft MSMQ).
There will be ...
3
votes
2answers
920 views
Try Dequeue in ConcurrentQueue
The TryDequeue in ConcurrentQueue will return false if no items in Queue.
If the Queue is empty I need that my queue will wait until new item to be added in queue and it dequeue that new one, and the ...
3
votes
4answers
337 views
Producer-Consumer with a variation - How to synchronize with thread signal/wait?
While working on a large project I realized I was making a lot of calls to be scheduled in the future. Since these were fairly light-weight, I thought it might be better to use a separate scheduler.
...
3
votes
2answers
1k views
Boost condition deadlock using wait() in producer-consumer code
I have implemented a basic threaded producer-consumer (thread 1 = producer, thread 2 = consumer) using Boost threads and conditions. I am getting stuck in wait() indefinitely quite often. I can't ...
3
votes
4answers
555 views
RabbitMQ C# API Event based Message Consumption
while (true)
{
BasicDeliverEventArgs e = (BasicDeliverEventArgs)Consumer.Queue.Dequeue();
IBasicProperties properties = e.BasicProperties;
byte[] ...
3
votes
5answers
1k views
Java: High-performance message-passing (single-producer/single-consumer)
I initially asked this question here, but I've realized that my question is not about a while-true loop. What I want to know is, what's the proper way to do high-performance asynchronous ...
3
votes
2answers
407 views
Is LinkedBlockingQueue a correct choice for a producer-consumer like scenario?
I have a producer-consumer like scenario. Class A produces objects of type E. I have to hold it in a static data structure in class A, because the consumer logic should be handled in a class B, which ...
3
votes
2answers
655 views
MSMQ - Fast producer/slow consumer
I have a problem with messaging (with MSMQ) which is a variation of fast producer/slow consumer. Is there a way to get outstanding unconsumed message count in a private MSMQ queue? I would like to ...
3
votes
3answers
3k views
C# producer/consumer
i've recently come across a producer/consumer pattern c# implementation. it's very simple and (for me at least) very elegant.
it seems to have been devised around 2006, so i was wondering if this ...
3
votes
6answers
7k views
C# Producer/Consumer pattern
I have simple one producer two consumers code as follow
but the output are only C2 consuming.
any bug in my code?
class Program
{
static void Main(string[] args)
{
Object lockObj = ...
3
votes
2answers
716 views
Thread-safe async byte queue
I've got a callback method that is called whenever new data is available:
public delegate void DataCallback(
byte[] buffer,
int offset,
int count);
I want to wrap this in a class that ...
2
votes
4answers
55 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
3answers
61 views
Generic buffer in C# [example in Java]
Is there any library class I can use for a buffer in a consumer-producer situation with multiple threads?
I don't very well understand the multithreading ways of C# so thew example of a perfect ...
2
votes
2answers
127 views
Producer-consumer architecture with Java RealTime
I am working on designing trade system using Java Realtime ( Sun JRTS 2.2 ) and would like to few questions about best practices, because I am afraid of inventing the wheel and pretty sure that my ...
2
votes
1answer
70 views
Image creation in Java with Component.createImage(ImageProducer) and custom ImageProducer
I'm working on a Java fractal program. In my design, I would like to implement a particular ImageProducer class which computes pixels in a background worker thread when the ...
2
votes
3answers
66 views
Handling producer thread when no consumers are ready
Suggestions on patterns for handling the following scenario:
A single thread that dispatches events to consumers. There is a 1:1 between each event and a consumer (each event is dispatched to a ...
2
votes
3answers
109 views
C++ simple threading question
I'm writing a simple producer/consumer program to better understand c++ and multithreading.
In my thread that ran the consumer i had these first two lines:
pthread_cond_wait(&storageCond, ...
2
votes
4answers
178 views
Python communicate with a subprocess
I have a subprocess which is constantly producing data, but most of the data I'm not interested in. However occasionally, at random times, I need to grab a sample of the output - the thing is I need ...
2
votes
1answer
95 views
Does Producer/Consumer model equal Actor?
So lately I've been reading a lot of article about how concurrent programming is hard, and how concurrent programming with shared state is near impossible. So languages like Erlang (I think this is ...
2
votes
4answers
189 views
design issues in producer-consumer problem
I am working on a little multi-threading project.The system could be divided into 2 sub parts, A and B. the data flows from A to B.
A part keeps fetching raw data from outside world, do some ...
2
votes
4answers
587 views
Job queue as SQL table with multiple consumers (PostgreSQL)
I have a typical producer-consumer problem:
Multiple producer applications write job requests to a job-table on a PostgreSQL database.
The job requests have a state field that starts contains QUEUED ...
2
votes
2answers
931 views
producer-consumer problem with pthreads
I'm attempting to solve the producer-consumer problem using pthreads and semaphores, but it looks like the producer threads aren't producing, and the consumer threads aren't consuming. It appears that ...
2
votes
1answer
54 views
Reading unflushed page from another process
I have a producer process, that writes to a mmap'd file and a consumer process that reads from it. This is on Linux.
If the producer makes a change to the mmap and its not instantly flushed, when ...
2
votes
1answer
148 views
How to manage/host AWS SQS queue consumers in Python?
I am currently working on a distributed processing application written in Python that utilises Amazon SQS.
What is the most Pythonic way of properly creating and hosting a queue consumer in Python ...
2
votes
5answers
565 views
Review request: Thread safe queue (parallel push pop)
Here is an implementation of a thread safe queue. The push and pop won't block each other. However, pop will wait until an item is pushed, if the queue is empty. Multiple producers and consumers can ...
2
votes
1answer
260 views
Need a sample of single producer / single consumer pattern with .NET 4.0 new features
.NET for added new concurrency features under System.Collection.Concurrent and some synchronization classes. Is there any good sample for single producer - single consumer pattern using these feature ...