Tutorial - Apache Storm

Introduction

Apache Storm is generally used to perform real-time calculations related to big data (continuous calculation, involving unbounded data sources handled in a streaming manner).

Storm allows to run “topologies” (graphs of computation) on a “storm cluster”.
A storm cluster is made of several nodes, including:

Apache storm cluster

A storm topology (the graph of computation) is a kind of real-time computation “stream”. Data tuples are exchanged between computation units, called “spouts” and “bolts”. Spouts are unbounded sources of tuples (they provide data), and bolts issue tuple transformations (they perform calculations).

Apache storm topology

Storm topologies are packaged in a jar file, which is then submitted to the Nimbus node (the master node of the storm cluster).
Then, Storm distributes the computation units (spouts and/or bolts) on the cluster “worker” nodes.

Apache storm topology submission

In this tutorial, we will use Roboconf to deploy a storm cluster on multiple VMs (in fact, on multiple Docker containers - but switching to IaaS VMs is merely a configuration issue).

Apache storm on multiple VMs

Roboconf graph for Storm clusters

Let’s make it simple: we will consider 2 kinds of nodes, called Nimbus (the master node) and Worker (a slave node).

The Nimbus node will embed an instance of ZooKeeper (nodes coordination) and StormUI (Storm’s web-based management console).
Both Nimbus and Worker nodes will provide a storm platform (each one with a specific configuration), and the processes will be run under supervision using supervisor.

A Worker node needs to know the IP address of the Nimbus node, in order to complete its configuration before starting.
This is a runtime dependency, that must be resolved before starting the node.

So, to sum up:

In this tutorial, we decided to design the Roboconf graph as follows:

Roboconf graph for Apache Storm

Which is equivalent to this graph definition:


# The VM
VM {
	installer: target;
	children: storm_platform;
}

# Storm base platform
storm_platform {
	installer: script;
	children: storm_nimbus, storm_worker;
}

# Storm nodes

# Storm master node (Nimbus, along with zookeeper + stormUI)
storm_nimbus {
	installer: script;
	exports: ip;
}

# Storm worker (slave) node
storm_worker {
	installer: script;
	imports: storm_nimbus.ip;
}

Download and build the tutorial

The Roboconf examples can be download from Github:

git clone https://github.com/roboconf/roboconf-examples.git

Then, go in the roboconf-examples/storm-bash directory: the tutorial’s resources are there.
To build it using Maven:

mvn clean install

The Roboconf deployment archive is the ZIP file located in the target/ directory (e.g. storm-bash-0.9.zip).

Project organization

src/main/model
├── descriptor
│   └── application.properties
├── graph (the application graph is what Roboconf deploys)
│   ├── graph.graph
│   ├── storm_platform (the Apache storm software platform, without configuration)
│   │   ├── files
│   │   └── scripts (life cycle scripts, to be called by Roboconf)
│   │       ├── deploy.sh
│   │       ├── start.sh
│   │       ├── stop.sh
│   │       ├── undeploy.sh
│   │       └── update.sh
│   ├── storm_nimbus (the Storm master node, to deploy on storm_platform: brings ZooKeeper and StormUI)
│   │   ├── files (configuration files for Storm and ZooKeeper)
│   │   │   ├── nimbus.cfg
│   │   │   ├── storm.yaml
│   │   │   └── zoo.cfg
│   │   └── scripts (life cycle scripts, to be called by Roboconf)
│   │       ├── deploy.sh
│   │       ├── start.sh
│   │       ├── stop.sh
│   │       ├── undeploy.sh
│   │       └── update.sh
│   ├── storm_worker (a Storm slave node, to deploy on storm_platform: mostly configuration)
│   │   ├── files (configuration files for Storm)
│   │   │   ├── storm.yaml
│   │   │   └── worker.cfg
│   │   └── scripts (life cycle scripts, to be called by Roboconf)
│   │       ├── deploy.sh
│   │       ├── start.sh
│   │       ├── stop.sh
│   │       ├── undeploy.sh
│   │       └── update.sh
│   └── VM (the VM where to deploy Storm: here, configured for Docker)
│       └── target.properties
└── instances (an initial set of instances, ready to deploy with Roboconf)
    └── initial.instances

Prerequisites

Install the messaging server (RabbitMQ) and the Roboconf DM.
You may have already done this in the getting started with Roboconf.

Docker will also be necessary (unless you reconfigure the tutorial to use another IaaS).
For details, see Roboconf tips for Docker.

Then, start the DM, and make it aware of Docker: open the DM’s interactive mode and type in…

# Here in version 0.9
bundle:install mvn:net.roboconf/roboconf-target-docker/0.9
bundle:start <bundle-id>

Now, you can check that everything is up and running by connecting to the Roboconf web admin:

http://localhost:8181/roboconf-web-administration/index.html

Deploy the Storm tutorial with Roboconf

From version 0.9, the Docker target relies on our official Docker images, based on Alpine. Therefore, you may have to update the scripts that manage the life cycle of the components.