Skip to main content

what is Producer Consumer Problem and Solution


Producer-Consumer solution using threads in Java


In computing, the producer–consumer problem (also known as the bounded-buffer problem) is a classic example of a multi-process synchronization problem. The problem describes two processes, the producer and the consumer, which share a common, fixed-size buffer used as a queue.
  • The producer’s job is to generate data, put it into the buffer, and start again.
  • At the same time, the consumer is consuming the data (i.e. removing it from the buffer), one piece at a time.
Problem
To make sure that the producer won’t try to add data into the buffer if it’s full and that the consumer won’t try to remove data from an empty buffer.
Solution 
The producer is to either go to sleep or discard data if the buffer is full. The next time the consumer removes an item from the buffer, it notifies the producer, who starts to fill the buffer again. In the same way, the consumer can go to sleep if it finds the buffer to be empty. The next time the producer puts data into the buffer, it wakes up the sleeping consumer.
An inadequate solution could result in a deadlock where both processes are waiting to be awakened.



Producer Consumer Problem is a classical concurrency problem. In fact it is one of the concurrency design pattern.  It is also known as the bounded-buffer problem.

The problem describes two processes, the producer and the consumer, who share a common, fixed-size buffer used as a queue.

The producer's job is to generate data and put it into the buffer. At the same time, the consumer consumes the data (i.e., by removing it from the buffer), one piece at a time.

The problem is to make sure that the producer won't try to add data into the buffer if it's full and that the consumer won't try to remove data from an empty buffer.

The solution for the producer is to either go to sleep or discard data if the buffer is full. The next time the consumer removes an item from the buffer, it notifies the producer, who starts to fill the buffer again. 

In the same way, the consumer can go to sleep if it finds the buffer to be empty. The next time the producer puts data into the buffer, it wakes up the sleeping consumer.

Real Life Example

Lets say in our Example, The producer is Mr Simpson whose job is to bake Pizza and consumer is Joey Tribbiani who consumes Pizza at the same time. Both of them share common Pizza counter to interact with each other.

The problem is to make sure that the Simpson won't try to add more pizza on Pizza counter if it's full. He needs to wait until Joey consumes Pizza.

Similarly Joey can't consume pizza from an empty counter. He needs to wait until Mr Simpson adds Pizza on counter.

You can understand it better by watching this video.


Uses
 

In Java library, Executor framework implements Producer Consumer design pattern to separate responsibility of addition and execution of task.


Benefits 

  1. It simplifies developement process. you can Code Producer and Consumer independently and Concurrently, they just need to know shared object.
  2. Producer doesn't need to know about who is consumer or how many consumers are there. Same is true with Consumer.
  3. Producer and Consumer can work with different speed. In fact by monitoring consumer speed, one can introduce more consumer for better utilization.


Java Program Implementation


Producer Consumer Design Patter can be implemented using following two approaches.

  1. By using wait(), notify() and notifyAll() methods
  2. By using BlockingQueue 
     

Comments

Popular posts from this blog

Yahoo! Calendar "Add Event" Seed URL Parameters

I can't seem to find any official documentation on this, so here are my notes. Some information gathered from  http://richmarr.wordpress.com/tag/calendar/ Other information gathered through trial and error, and close examination of the "Add Event" form on Yahoo!'s site. Yahoo! Calendar URL Parameters Parameter Required Example Value Notes v Required 60 Must be  60 . Possibly a version number? TITLE Required Event title Line feeds will appear in the confirmation screen, but will not be saved. May not contain HTML. ST Required 20090514T180000Z Event start time in UTC. Will be converted to the user's time zone. 20090514T180000 Event start time in user's local time 20090514 Event start time for an all day event. DUR value is ignored if this form is used. DUR 0200 Duration of the event. Format is HHMM, zero-padded. MM may range up to 99, and is converted into hours appropriately. HH values over 24 hours appear to be modulated by 24. Durations t...

Producer Consumer Design Pattern By using wait(), notify() and notifyAll() methods

Producer Consumer Problem is a classical concurrency problem. In fact it is one of the concurrency design pattern .   Producer Consumer Design Patter can either be implemented using following two approaces. By using wait(), notify() and notifyAll() methods By using BlockingQueue  In this post I will explain implementation using wait() and notify() method. If you are interested in the implementation using Blocking Queue, you can check my post  Producer Consumer Design Pattern using BlockingQueue . The Object class in java contains three final methods that allows threads to communicate about the lock status of a resource. These methods are wait() , notify() and notifyAll() .  We can use  wait() method to pause execution of thread. notify() and notifyAll() methods are used to wake up waiting th...