0% found this document useful (0 votes)
316 views

Producer Consumer Design Pattern With Blocking Queue Example in Java PDF

Producer Consumer design pattern is a classic concurrency or threading pattern which reduces coupling between Producer and Consumer by separating Identification of work with Execution of Work. In Producer Consumer design pattern a shared queue is used to control the flow and this separation allows you to Code Producer and Consumer separately. By using Producer Consumer pattern both Producer and Consumer Thread can work with different speed.

Uploaded by

Gaurav Pawar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
316 views

Producer Consumer Design Pattern With Blocking Queue Example in Java PDF

Producer Consumer design pattern is a classic concurrency or threading pattern which reduces coupling between Producer and Consumer by separating Identification of work with Execution of Work. In Producer Consumer design pattern a shared queue is used to control the flow and this separation allows you to Code Producer and Consumer separately. By using Producer Consumer pattern both Producer and Consumer Thread can work with different speed.

Uploaded by

Gaurav Pawar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

9/23/2014

Producer Consumer Design Pattern with Blocking Queue Example in Java

Javarevisited
Blog about Java programming language, FIX Protocol, Tibco Rendezvous and related Java technology stack.

Queue in Java

Java

The Java Class

Java Wait For

THURSDAY, FEBRUARY 16, 2012

Producer Consumer Design Pattern with Blocking Queue Example in Java


Producer Consumer Design pattern is a classic concurrency or
threading pattern which reduces coupling between
Producer and Consumer by separating Identification of work with
Execution of Work. In producer consumer design pattern a shared
queue is used to control the flow and this separation allows you to
code producer and consumer separately. It also addresses the issue
of different timing require to produce item or consuming item. by
using producer consumer pattern both Producer and Consumer
Thread can work with different speed. In this article we will see What
is producer consumer problem which is very popular multi-threading
interview question, How to solve producer consumer problem using
Blocking Queue and Benefits of using Producer Consumer design
pattern.

Best of Javarevisited
How Android works, Introduction for Java
Programmers
Difference between Java and Scala Programming
Top 5 Java Programming Books for Developers
Top 10 JDBC Best Practices for Java programmers
Tips and Best practices to avoid
NullPointerException in Java
10 Object Oriented Design Principles Java
Programmer Should Know
10 HotSpot JVM Options, Every Java Programmer
Should Know

Real World Example of Producer Consumer Design Pattern


Producer consumer pattern is every where in real life and depict coordination and collaboration. Like one
person is preparing food (Producer) while other one is serving food (Consumer), both will use shared table for
putting food plates and taking food plates. Producer which is the person preparing food will wait if table is full
and Consumer (Person who is serving food) will wait if table is empty. table is a shared object here. On Java
library Executor framework itself implement Producer Consumer design pattern be separating responsibility
of addition and execution of task.

Benefit of Producer Consumer Pattern


Its indeed a useful design pattern and used most commonly while writing multi-threaded or concurrent code. here
is few of its benefit:
1) Producer Consumer Pattern simple development. 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. There is no risk of Consumer consuming half-baked item.
In fact by monitoring consumer speed one can introduce more consumer for better utilization.
4) Separating producer and Consumer functionality result in more clean, readable and manageable code.

Producer Consumer Problem in Multi-threading


Producer-Consumer Problem is also a popular java interview question where interviewer ask to implement producer
consumer design pattern so that Producer should wait if Queue or bucket is full and Consumer should wait if queue or
bucket is empty. This problem can be implemented or solved by different ways in Java, classical way is using wait and notify
method to communicate between Producer and Consumer thread and blocking each of them on individual condition like
full queue and empty queue. With introduction of BlockingQueue Data Structure in Java 5 Its now much simpler because
BlockingQueue provides this control implicitly by introducing blocking methods put() and take(). Now you don't require to use
wait and notify to communicate between Producer and Consumer. BlockingQueue put() method will block if Queue is full in
case of Bounded Queue and take() will block if Queue is empty. In next section we will see a code example of Producer
Consumer design pattern.

Subscribe To This Blog Free


Posts
Comments

Follow Us

Using Blocking Queue to implement Producer Consumer Pattern


BlockingQueue amazingly simplifies implementation of Producer-Consumer design pattern by providing outofbox support of
blocking on put() and take(). Developer doesn't need to write confusing and critical piece of wait-notify code to implement
communication. BlockingQuue is an interface and Java 5 provides different implantation like ArrayBlockingQueue and
LinkedBlockingQueue , both implement FIFO order or elements, while ArrayLinkedQueue is bounded in nature

Follow @javinpaul

6,045 followers

Javarevisited
Follow

+1

+ 37,023

LinkedBlockingQueue is optionally bounded. here is a complete code example of Producer Consumer pattern with
BlockingQueue. Compare it with classic wait notify code, its much simpler and easy to understand.
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.logging.Level;
import java.util.logging.Logger;
public class ProducerConsumerPattern {
public static void main(String args[]){
//Creating shared object
BlockingQueue sharedQueue = new LinkedBlockingQueue();
//Creating Producer and Consumer Thread
Thread prodThread = new Thread(new Producer(sharedQueue));

http://javarevisited.blogspot.sg/2012/02/producer-consumer-design-pattern-with.html

1/7

9/23/2014

Producer Consumer Design Pattern with Blocking Queue Example in Java

Thread consThread = new Thread(new Consumer(sharedQueue));

Javarevisited
Like

//Starting producer and Consumer thread


prodThread.start();
consThread.start();
}

12,226 people like Javarevisited.

}
//Producer Class in java
class Producer implements Runnable {

Facebook social plugin

Followers
private final BlockingQueue sharedQueue;

Join this site


public Producer(BlockingQueue sharedQueue) {
this.sharedQueue = sharedQueue;
}
@Override
public void run() {
for(int i=0; i<10; i++){
try {
System.out.println("Produced: " + i);
sharedQueue.put(i);
} catch (InterruptedException ex) {
Logger.getLogger(Producer.class.getName()).log(Level.SEVERE, null, ex);
}
}
}

with Google Friend Connect

Members (2350) More

Already a member? Sign in

}
//Consumer Class in Java
class Consumer implements Runnable{
private final BlockingQueue sharedQueue;
public Consumer (BlockingQueue sharedQueue) {
this.sharedQueue = sharedQueue;
}
@Override
public void run() {
while(true){
try {
System.out.println("Consumed: "+ sharedQueue.take());
} catch (InterruptedException ex) {
Logger.getLogger(Consumer.class.getName()).log(Level.SEVERE, null, ex);
}
}
}

}
Output:
Produced: 0
Produced: 1
Consumed: 0
Produced: 2
Consumed: 1
Produced: 3
Consumed: 2
Produced: 4
Consumed: 3
Produced: 5
Consumed: 4
Produced: 6
Consumed: 5
Produced: 7
Consumed: 6
Produced: 8
Consumed: 7
Produced: 9
Consumed: 8
Consumed: 9
You see Producer Thread

Subscribe by email:

Subscribe
By Javin Paul
Search

Design Pattern for Java


Synchronized This Java
What Is Class in Java
Blog Archive
2014 ( 85 )
2013 ( 136 )
2012 ( 217 )
December ( 52 )
November ( 8 )
October ( 14 )
September ( 8 )
August ( 9 )
July ( 9 )
June ( 12 )
May ( 10 )
April ( 14 )
March ( 28 )
February ( 18 )

produced number and Consumer thread consumes it in FIFO order because blocking

queue allows elements to be accessed in FIFO.

Java Mistake 1 - Using float and double for


moneta...
How to convert Char to String in Java with
Example...

Thats all on How to use Blocking Queue to solve Producer Consumer problem or example of Producer consumer
design pattern. I am sure its much better than wait notify example but be prepare with both if you are going for any Java
Interview as Interview may ask you both way.

How to check or detect duplicate elements in


Array...

Other Java threading tutorial you may like:

How to set JAVA_HOME environment in Linux,


Unix an...

http://javarevisited.blogspot.sg/2012/02/producer-consumer-design-pattern-with.html

How to solve java.util.NoSuchElementException


in J...

2/7

9/23/2014

Producer Consumer Design Pattern with Blocking Queue Example in Java

What does Volatile keyword do in Java

What is Race Condition in multithreading 2


Examp...

How to Stop Thread in Java


How to prevent deadlock in Java Code

JSTL Set tag examples or <c:set> in JSP Java


J2E...

When to use Thread or Runnable interface in Java?

How to implement Thread in Java


How to deal with blocking method in Java

Difference between throw and throws in


Exception h...

How to use Factory Design pattern in Java

Difference between LinkedList vs ArrayList in


Java...

Save on Double Zoom Kit

How to encode decode String in Java base64


Encodin...

edge.canon.co.in/EOS1200D
Say EOS 1200D & save INR 12995* on Double Zoom Kit. Get Free* gifts

Producer Consumer Design Pattern with Blocking


Que...
Why non-static variable cannot be referenced
from ...
fail-safe vs fail-fast Iterator in Java

You might like:

How to fix java.lang.ClassNotFoundException:


org.a...

Why wait, notify and notifyAll is defined in Object Class and not on Thread class in Java
20 Things on Synchronization, Synchroinzed Block, Method, locking and Threadsafety in Java
How to Join Multiple Threads in Java - Thread Join Example
ReentrantLock Example in Java, Difference between synchronized vs ReentrantLock

What is blocking methods in Java and how do


deal w...
Recommended by

Posted by Javin Paul at 5:44 AM

+55 Recommend this on Google

Labels: core java , core java interview question


Location: United States

Why wait, notify and notifyAll is defined in


Objec...
3 Example to Compare two Dates in Java
Difference between instance class and local
variab...
January ( 35 )

8 comments :

Searching for professional web design?

2011 ( 145 )

Anonymous said...

2010 ( 33 )

Recently I got this question in interview with different scenario. How to resolve the producer and consumer
problem so that my CPU cycle can be used to 100%. For ex if producer is producing less and consumer is consuming
fast then your CPU cycle is getting wasted which is associated with cost. So what would be strategy to resolve this.
Any suggestion?

References

March 5, 2013 at 12:15 PM


Mudit Srivastava said...
Well i see something is missing, how to define the size of queue ?
March 7, 2013 at 9:06 AM
SARAL SAXENA said...

Java API documentation JDK 6


Spring framework doc
Struts
JDK 7 API

Hi Javin, ..gr8 article few things that I want to add in this is...
BlockingQueue Code Example
Here is an example of how to use a BlockingQueue. The example uses the ArrayBlockingQueue implementation of
the BlockingQueue interface.

MySQL
Linux
Eclipse

First, the BlockingQueueExample class which starts a Producer and a Consumer in separate threads. The Producer
inserts strings into a shared BlockingQueue, and the Consumer takes them out.

jQuery

public class BlockingQueueExample {


public static void main(String[] args) throws Exception {

Copyright by Javin Paul 2012. Powered by Blogger.

BlockingQueue queue = new ArrayBlockingQueue(1024);


Producer producer = new Producer(queue);
Consumer consumer = new Consumer(queue);
new Thread(producer).start();
new Thread(consumer).start();
Thread.sleep(4000);
}
}
Here is the Producer class. Notice how it sleeps a second between each put() call. This will cause the Consumer to
block, while waiting for objects in the queue.
public class Producer implements Runnable{
protected BlockingQueue queue = null;
public Producer(BlockingQueue queue) {
this.queue = queue;
}
public void run() {
try {
queue.put("1");
Thread.sleep(1000);
queue.put("2");

http://javarevisited.blogspot.sg/2012/02/producer-consumer-design-pattern-with.html

3/7

9/23/2014

Producer Consumer Design Pattern with Blocking Queue Example in Java

Thread.sleep(1000);
queue.put("3");
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
Here is the Consumer class. It just takes out the objects from the queue, and prints them to System.out.
public class Consumer implements Runnable{
protected BlockingQueue queue = null;
public Consumer(BlockingQueue queue) {
this.queue = queue;
}
public void run() {
try {
System.out.println(queue.take());
System.out.println(queue.take());
System.out.println(queue.take());
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
April 13, 2013 at 9:26 PM
yyc said...
The above example is good but too simple. Would you minding providing a example with multiple producers and
consumers and stopping the program once producers have done their jobs?
October 8, 2013 at 8:30 PM
Anonymous said...
I tried out following implementation of Producer-Consumer and it doesn't list out all the elements from the list.
Few of them are missing.
I wanted to have one producer & multiple consumers and have the consumers take data out of the list in round
robin fashion, but not working as expected. Would you be able to point me out the error in the code? Thanks.
public class ProdConController {
public static void main(String[] args) throws Exception {
List stringList = new ArrayList();
SignalObject signalObject = new SignalObject();
ProdWorker prodWorker = new ProdWorker(stringList, signalObject);
ConWorker conWorker1 = new ConWorker(stringList, signalObject, "worker1");
ConWorker conWorker2 = new ConWorker(stringList, signalObject, "worker2");
Thread prodThrd = new Thread(prodWorker);
Thread conThrd1 = new Thread(conWorker1);
Thread conThrd2 = new Thread(conWorker2);
prodThrd.start();
conThrd1.start();
conThrd2.start();
prodThrd.join();
conThrd1.join();
conThrd2.join();
}
}
public class SignalObject {
private boolean isDataAvailable = false;
public synchronized boolean isDataAvailable() {
return isDataAvailable;
}
public synchronized void setDataAvailable(boolean dataAvailable) {
isDataAvailable = dataAvailable;
}
}
public class ProdWorker implements Runnable {
private List stringList;
private SignalObject signalObject;
public ProdWorker(List stringList, SignalObject signalObject) {
this.stringList = stringList;
this.signalObject = signalObject;
}
@Override
public void run() {

http://javarevisited.blogspot.sg/2012/02/producer-consumer-design-pattern-with.html

4/7

9/23/2014

Producer Consumer Design Pattern with Blocking Queue Example in Java

for (int i = 1; i <= 10; i++) {


System.out.println("Adding " + i + " to queue");
stringList.add(String.valueOf(i));
}
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
synchronized (signalObject) {
signalObject.setDataAvailable(true);
signalObject.notifyAll();
}
}
}
public class ConWorker implements Runnable {
private final List stringList;
private String name;
private SignalObject signalObject;
public ConWorker(List stringList, SignalObject signalObject, String name) {
this.stringList = stringList;
this.name = name;
this.signalObject = signalObject;
}
@Override
public void run() {
while (!signalObject.isDataAvailable()) {
try {
synchronized (signalObject) {
signalObject.wait();
}
} catch (InterruptedException ex) {
System.out.println("Received interrupt");
ex.printStackTrace();
}
}
synchronized (stringList) {
for (int i = 0; i < stringList.size(); i++) {
System.out.println("Received:" + stringList.get(i) + " by worker:" + name);
stringList.remove(i);
// if (i % 2 == 0 && this.name.equals("worker1")) {
// System.out.println("Received:" + stringList.get(i) + " by worker:" + name);
// }
// else {
// System.out.println("Received:" + stringList.get(i) + " by worker:" + name);
// }
}
}
System.out.println("Finished consuming all data");
}
}
November 5, 2013 at 12:06 PM
Stanislav Lorents said...
Recently I got this question in interview with different scenario. How to resolve the producer and consumer
problem so that my CPU cycle can be used to 100%. For ex if producer is producing less and consumer is consuming
fast then your CPU cycle is getting wasted which is associated with cost. So what would be strategy to resolve this.
Any suggestion?
====================
(Count of Producers == Count of Consumers ) >= max CPU threads (cores / hyper threads) While consumers are
waiting, producers will allocate all CPU resources and vice versa. Also the queue size >= max CPU threads.
December 1, 2013 at 1:26 AM
Anonymous said...
Can you please share solution of Producer Consumer problem using Semaphore? I know it can be solved using
multiple way including BlockingQueue, wait and notify as shown above, but I am really interested in using
Semaphore. Thanks
February 13, 2014 at 9:51 PM
sathish said...
package Thread;
import java.util.concurrent.Semaphore;
class SharedResource
{

http://javarevisited.blogspot.sg/2012/02/producer-consumer-design-pattern-with.html

5/7

9/23/2014

Producer Consumer Design Pattern with Blocking Queue Example in Java

int n;
static Semaphore semCons = new Semaphore(0);
static Semaphore semProd = new Semaphore(1);
void put(int n)
{
try {
semProd.acquire();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
this.n=n;
System.out.println("Put : " + n);
semCons.release();
}
void get()
{
try {
semCons.acquire();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Got : "+n);
semProd.release();
}
}
class Consumer implements Runnable
{
SharedResource sr;
public Consumer(SharedResource sr)
{
this.sr = sr;
new Thread(this, "Consumer").start();
}
@Override
public void run()
{
for(int i=0;i<10;i++)
{
sr.get();
}
}
}
class Producer implements Runnable
{
SharedResource sr;
public Producer(SharedResource sr)
{
this.sr= sr;
new Thread(this,"Producer").start();
}
@Override
public void run()
{
for(int i=0;i<10;i++)
{
sr.put(i);
}
}
}
public class ProducerConsumer {
public static void main(String[] args) {
SharedResource sr = new SharedResource();
new Consumer(sr);
new Producer(sr);
}
}
May 22, 2014 at 4:58 AM

Post a Comment

http://javarevisited.blogspot.sg/2012/02/producer-consumer-design-pattern-with.html

6/7

9/23/2014

Producer Consumer Design Pattern with Blocking Queue Example in Java

Enter your comment...

Comment as:

Publish

Google Account

Preview

Newer Post

Home

Older Post

Subscribe to: Post Comments ( Atom )

About Me

Privacy Policy

http://javarevisited.blogspot.sg/2012/02/producer-consumer-design-pattern-with.html

7/7

You might also like