The Producer-Consumer Problem (also known as the bounded-buffer problem) is a classical example of a multi-process synchronization problem. The problem describes two processes, the producer and the consumer, who share a common, fixed-size buffer used as a queue.

learn more… | top users | synonyms

4
votes
1answer
74 views

Java producer-consumer with stopping condition

I have N workers that share a queue of elements to compute. At each iteration, each worker removes an element from the queue and can produce more elements to compute, that are going to be put in the ...
-2
votes
0answers
16 views

Is the shared object being published safely?

Please have a look at the main() method of the following producer consumer solution : http://java67.blogspot.in/2012/12/producer-consumer-problem-with-wait-and-notify-example.html. It doesn't look ...
0
votes
4answers
47 views

producer consumer pattern with concurrenthashmap in java

I have the following problem, and I am not sure how to design parts of the solution: I have a large text file that I read line by line. I need to process each line and update a HashMap. AFAIK I need ...
0
votes
2answers
37 views

Java Resource-Game Simulation

I'm into a project of a resource-game simulation. What I have to do is... "If there are enough resources available, the request will be satisfied, and the requested quantities will be subtracted from ...
0
votes
2answers
63 views

Producer-Consumer using a stack in Java

I am using a stack as my storage to implement my Producer-Consumer model. public class Main { /** * @param args */ public static void main(String[] args) { Stackable<Integer> stack = new ...
0
votes
1answer
24 views

Why aren't my threads running?

// windows_procon.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <stdlib.h> #include <iostream> #include <time.h> #include ...
-1
votes
0answers
53 views

Thread safety critique requested for a Bounded Buffer C++11 implementation [closed]

I am trying to create a concurrent Bounded Buffer based loosely off of an article I read here. I wish to use this design as IPC communication channel between 2 threads (this is why you will see ...
2
votes
2answers
52 views

BlockingQueue consumer has no response while queue is not empty

I have a distributed system, whose node receive message objects through socket. The messages are written to a BlockingQueue when received and processed in another thread. I make sure that there is ...
0
votes
1answer
95 views

boost c++ lock-free queue vs shared queue

I'm quite new in multithreading programming, I just know the most common Producer-Consumer-Queue. I'm using the boost c++ libraries and I don't know if is better use boost::lockfree::queue or a ...
1
vote
1answer
37 views

Algorithm: Some sort of version of producer/consumer? Scheduling

I'm not sure if this is a producer/consumer problem but I couldn't find a better way to phrase my question. I'm wondering if this problem (or a similar one) has already been solved. If it hasn't, is ...
0
votes
2answers
60 views

Queue for multiple producers and consumers

I have to write a communication between multiple threads (at least 3 for now) in .Net3.5 and each of them is both producer and consumer. Instead of sending signals between each pair of threads my idea ...
0
votes
2answers
46 views

How to check BlockingQueue head element before taking?

I wanna check a head element before taking but raises java.lang.NullPointerException when peeking, using java BlockingQueue BlockingQueue sharedQueue = new LinkedBlockingQueue() this is my code, ...
0
votes
0answers
83 views

Producer/Consumer with pthreads

The program is to accept input for how long the sim will run, sleep and how many producers/consumers to create. When i run the program it asks for input but stops at "starting threads" and nothing ...
0
votes
1answer
58 views

Producer-Consumer Issue

Hi I'm trying to write an algorithm for solving the producer-consumer problem and I've hit a roadblock. This is the output I am getting from my code: Producing: 6 6 0 0 0 0 0 0 0 0 0 END and then ...
0
votes
2answers
75 views

Is there really a race condition in this multi-threaded java code?

I saw a snippet of code in this question which I could not understand (most probably due to the fact am a beginner in this area). The question talks about "an obvious race condition where sometimes ...
0
votes
1answer
65 views

Why are only BUFFER_SIZE-1 items allowed in buffer in Producer-Consumer paradigm using shared memory?

Here is an excerpt from the book "Operating System Concepts" 7th Edition Galvin,Gagne Chapter 3 from the hard-copy itself : The following variables reside in a region of memory shared by the ...
1
vote
4answers
43 views

Many ProducerS and many ConsumerS. Making the last producer alive killing the consumers

I have a standard producer consumer problem. Producer puts data into the stack(buffer) consumers take it. I would like to have many producers and consumers. the problem is I would like to make only ...
0
votes
3answers
31 views

Consumers producer multithreading consumers are not dying

I have a standard producer consumer problem. Producer puts data into the stack(buffer) consumers take it. The problem is that consumers are not dying(not always) when the producer ends producing the ...
0
votes
2answers
78 views

Multiple producer multiple consumer thread issue

I have a program in which I am trying to implement a multiple-producer, multiple-consumer setting. I have code which seems to work well when I have one consumer and multiple producers, but introducing ...
0
votes
0answers
48 views

Producer Consumer Simulation using Android Local Service

I am new to Android programming am trying to make an app that simulates the Producer Consumer app. The specifications of the app are as under: 1. I have a Button "Produce Items" which when clicked is ...
0
votes
1answer
42 views

Hybrid solution of consumer producer algorithm

I am trying to show that the following solution of the producer/consumer problem does not work, by showing that when a consumer is at the beginning of M1, there is a case when it won't be able to ...
0
votes
0answers
29 views

messages not even appears on the RabbitMQ server

In my RabbitMQ app the producer sends messages, but consumer receives only part of them(not the biggest one). when I execite rabbitmqctl list_queues in terminal it shows: ~$ sudo rabbitmqctl ...
0
votes
4answers
145 views

Producer-consumers(many). Consumers take and put into the shared queue

I made a producer-consumer program. It's just a program in core java without any GUI(Swing or SWT). It has one producer who put objects into the queue. Also there is a few consumers who must add some ...
1
vote
1answer
57 views

Storm as a replacement for Multi-threaded Consumer/Producer approach to process high volumes?

We have a existing setup where upstream systems send messages to us on a Message Queue and we process these messages.The content is xml and we simply unmarshal.This unmarshalling step is followed by a ...
0
votes
1answer
14 views

Faster consumer in inadequate implementation of classical producer consumer

Wikipedia provides an inadequate implementation of the classical producer-consumer problem. In that implementation, the consumer is implemented as follows: procedure consumer() { while (true) { ...
0
votes
1answer
38 views

Thread synchronization with multiple objects

I have been facing this problem for many days, Please help me out. I am implementing producer-consumer example using thread synchronization. I have made some twist in this traditional program. Instead ...
0
votes
1answer
86 views

Python producer/consumer with process and pool

I'm trying to write simple code for producer consumer with process. Producer is a process. For consumer I'm getting processes from Pool. from multiprocessing import Manager, Process, Pool from time ...
1
vote
1answer
238 views

Concurrent Doubly Linked List - Multiple Producer/Consumer FIFO Queue - Deadlock

I was playing around with a doubly-linked list for a MPMC FIFO-Queue (mainly for demonstration purposes). I aim now trying to pin down my mistake for a while and I do not really make progress. I run ...
1
vote
0answers
13 views

LDAP Redirect from consumer if producer is online

I got LDAP server with posix users set up, they can login using LDAP etc, but now I came across serious problem... hope it's real to implement. I need to implement mechanism like this: When someone ...
1
vote
2answers
25 views

Simplest Async TextWriter to TextReader stream/pipe

Does .Net (4.0) have an existing class that would allow one thread to write text and the other read? Ideally I'd use a MemoryStream like: MemoryStream memStream = new MemoryStream(); TextWriter tw ...
2
votes
2answers
62 views

Several producers, one consumer: Avoid starvation

Given an instance of the producer-consumer problem, where several producers send messages to a single consumer: What techniques do you recommend to avoid starvation of producers, when some of the ...
2
votes
1answer
159 views

Consumer and Producer using semaphores

I am currently experiencing both a deadlock and a core dump. Outside of main I have the following char buffer[SLOTCOUNT][SLOTSIZE]; int isEmpty[SLOTCOUNT]; FILE *myInFile; FILE *myOutFile; sem_t ...
1
vote
2answers
258 views

How to handle FIFO queue for producer-consumer pattern

I've a FIFO queue, producers and consumers which I try in different combinations which works except just this arrangement. I'm supposed to be able to run this with 3 Producers, 2 Consumers, 10 slots ...
0
votes
1answer
92 views

Searching an algorithm similar to producer-consumer

I would like to ask if someone would have an idea on the best(fastest) algorithm for the following scenario: X processes generate a list of very large files. Each process generates one file at a ...
0
votes
1answer
86 views

Thread synchronization/producer-consumer in java. Printing out numbers 1-10 then 10-1 repeatedly

I'm very new to java and found an exercise to work on basic thread synchronization. The problem is to print out 12345678910 10987654321 repeatedly until the program stops. Ten different threads should ...
3
votes
2answers
64 views

Producer consumer termination

I am currently studying concurrent programming patterns. Consider the solution to the producer consumer problem with bounded buffer using semaphores, presented on wikipedia. What if, at some point, ...
0
votes
0answers
105 views

Java producer/consumer threads — stopping a threads execution via wait

I have two threads in my Android app which are effectively in a producer/consumer relationship; the producer thread (a subclass of Thread) populates a buffer with objects, and the consumer thread (a ...
0
votes
0answers
129 views

google app engine backend background threads become unresponsive when run in parallel

I'm writing a google app engine java app to fetch a large (1GB) xml file in pieces, split it into its repeated nodes, and write something from each node to a cloud sql database. The fetching and ...
0
votes
0answers
80 views

Producer / Consumer with bounded buffer using condition variables

For the Producer / Consumer with bounded buffer problem implementation, is it a good idea to use two condition variables and one mutex. Mutex will ensure exclusive access to the buffer, one condition ...
1
vote
2answers
119 views

Fast producer and slow consumer

I have a use case where a fast producer inserts data in a queue and a slow consumer consumes data. The problem I'm facing is continuous increase in queue size over time. I have a class implementation ...
0
votes
0answers
55 views

Producer/consumer Mesa vs Hoare semantics

I have come across two different implementations of monitors. One which uses a while loop that checks whether a particular condition is true each time before going to sleep and again when waking up ...
0
votes
1answer
29 views

RabbitMQ let consumer receive more tasks before completing earlier task

Based on my understanding of RabbitMQ/AMQP I see an unfortunate tradeoff. The usual workflow is: Producer produces Queue delivers to consumer Consumer acks and does not receive more tasks until the ...
0
votes
3answers
70 views

Method wait() and notifyAll() is not static

public synchronized static int get() { while(cheia()==false){ try{ wait(); } catch(InterruptedException e){ } } if (fila[inicio] != 0) { ...
0
votes
2answers
225 views

POSIX threads & semaphores [closed]

I'm not able to debug the following program, since I don't have linux at home. I can't execute the program, but while I was compiling the program in lab session, I got two errors. Can anyone help me ...
1
vote
1answer
110 views

Acknowledge receipt of producer message by client

I have a Java class implementing a message producer, which sends messages to a queue named test. I have another class serving as a client, which gets messages from the same queue. I am confused on how ...
2
votes
1answer
182 views

while runnning jms queue producer sends message and consumer gets message but message is not displayed

Hi i have java code which has a producer and a consumer. the producer sends the message to a queue and the consumer also gets the message but i do not know why the message is not displayed. I am using ...
0
votes
2answers
90 views

Producers - consumers in python

For the producer-consumer problem I have come up with this solution: import threading import random import time class Bucket: def __init__(self, size): self.size = size self.current_size = ...
0
votes
1answer
113 views

Client Server Assignment modeled using Java Threads (Producer/Consumer queues)

I have modeled a Client Server application using Java Threads and BlockingQueues (producer and consumer queues) as recommended in a previous question. What I have is server has a ...
1
vote
0answers
60 views

Flex/BlazeDS Producer Consumer - Stop producing client from receiving from a consumer

I am currently working with Flex 4.9 (Mobile App) and BlazeDS integrated with ColdFusion. I have created a simple producer/consumer application where is sends up the object to the server, stores the ...
1
vote
1answer
89 views

Multithreading with a multimap

Enviroment : Windows 7.0 , C++ , Multithreading I have created a new worker thread to receive data on socket and add it into a static multimap instance. code snippet: //remember mymultimap is ...

1 2 3 4 5 7