Blog

Vert.x
Quick Tips

Master Worker Architecture Using Vert.x

Today we are going to explain how Vert.x can be used for creating distributed Master Worker Paradigm. In large scale systems it’s applicable to wide variety of problems.

Just to refresh our memories about what Vert.x

Vert.x as we know is a lightweight framework for creating distributed microservices. It can sale up and scale out depending on your needs. It also takes away all your pain of dealing with complexity of heavily multithreaded environments, race conditions etc. etc.

Primary unit of work in Vert.x is a verticle. Verticles are thread safe and they can run locally or remotely. One Verticle interacts with other verticle using Events which carry data with them.

Let’s take a day to day scenario.

We are getting lot of requests. Each request is independent of each other but we are unable to process all these requests on the commodity hardware that we have. How to serve all these requests coming to our cool high traffic website?

Well one answer is serve each request in a new “thread” and keep increasing the CPU Cores (Scale Up) and hope it will work. This is what your webserver does. Problem is you can only increase no of cores to a limit (How high you can go?).

Once you reach that limit you will add more such machines and leave it to load balancer to divide all these requests equally between all machines. Sounds familiar?

Well, you will have problem relying on load balancer when every service in the system faces same issue. Every time you will have to scale these services and keep re-configuring load balancer. What if this was possible in application layer dynamically. What if we could scale up and out without any pain of load balancer.  Good news is it can be achieved using Vert.x except load balancing happens inside your application layer. There can be lot of benefits of this approach which I will discuss some other time but for now let’s just focus on how can this be achieved using Vert.x.

So this problem has 2 major challenges:

  1. How to divide the work between different machines so that we can keep up with this load.
  2. How to combine the result from all this processing so that we can return this result to client (master) who needs answers from all workers before proceeding further (Can this be achieved by load balancer?).
vert-x-master-worker

So Master is like Management whose only job is to distribute all the work to developers (like you and me) and when work is done. Combine all the statuses, create a report and notify the boss and hopefully get a fat pay hike (sounds familiar?).

In terms of Vert.x We have a master Verticle which gets lot of work to do. But Master does not want to do any work.Why? Because its a “Master”. So master wants to assign all this work to Workers. Worker are also verticles in Vert.x. But then problem arises that master needs to know if all work is completed so that it can make right decision about what to do next.

So here is high level architecture we are going to flow.

Ok..so in order to simulate this first lets create lot of work.

code1-1
code1-2

So worker does the work and sends an event on event bus with result.

Now master needs to combine all these results. This is way cool features introduced in Vert.x 3…Composable futures It makes this so easy.

code1-3

That’s all !!.  We hope this will be useful in some of your scenario.

Source code is available at https://github.com/singhmarut/vertx-master-worker-simulator

Happy coding !!

Thank you for reading. For continued insights and in-depth discussions, please follow our blogs at Ezeiatech.