Reading Time: 5 minutes

In your daily work as an integration you're working with different kinds of patterns, even if you're not aware of it.

Since Mule is based on EIP (Enterprise Integration Patterns) you're most definitely using patterns when using Mule.

latest report
Learn why we are the Leaders in management and iPaaS

One of those patterns that seems to raise a lot of questions is the “fork and join pattern”. The purpose of the fork and join pattern is to send a request to different targets, in parallel, and wait for a aggregated response from all the targets.

This is very useful when you want to merge information from different systems, perform calculation based on information from different targets or compare from a range of data sources.

Fork and join flowchart

Flowchart describing the fork and join pattern

Since I've noticed from questions on the forum and from colleagues in the that this is tricky thing to do I thought I would show you guys a simple example on how it's done.

In my example there's a http request coming in that should return the lowest price from different shops. In the example the request is delegated to 2 different shops, shop1 and shop2, in parallel (asynchronous) and collected for comparison to return the lowest price. This is easily done with Mule and the key feature is the request-reply router. So let's dig in to the configuration…

In this example I'm using the vm transport to simulate communication with external systems and a random price is returned from the different shops.

Notice that the vm endpoints could be replaced with whatever protocol you desire and the number of external sources could be as many as you like, just be sure to tell Mule how many results to wait for by using the property MULE_CORRELATION_GROUP_SIZE.

So by opening a browser and enter http://localhost:81/lowestprice a number is returned, not very useful but that's not the point of the example.

When looking at the log the following can be seen:

10:23:10,669  WARN LoggerMessageProcessor,[forkandjoin-0.0.1-SNAPSHOT].shop1Flow.stage1.02:269 – Price from shop 1: 362
10:23:10,679  WARN LoggerMessageProcessor,[forkandjoin-0.0.1-SNAPSHOT].shop2Flow.stage1.02:269 – Price from shop 2: 109
10:23:10,729  WARN LoggerMessageProcessor,[forkandjoin-0.0.1-SNAPSHOT].connector.http.mule.default.receiver.02:269 – Lowest price: 109

That tells us that the request has been sent to both shop1 and shop2 and in this case the lowest price was received from shop2.

A simple example but I hope you get the idea on how fork and join pattern can be used and how to use it in more advanced scenarios.


This is a guest post from Mule Champion Tomas Blohm. Thank you Tom!  If you would like to write a guest post please email us and get a T-shirt, squeezy Mule or other cool swag.