Home Lambda Architecture With Kafka, ElasticSearch, Apache Storm and MongoDB
Post
Cancel

Lambda Architecture With Kafka, ElasticSearch, Apache Storm and MongoDB

How I would use Apache Storm,Apache Kafka,Elasticsearch and MongoDB for a monitoring system based on the lambda architecture.

What is Lambda Architecture?

It’s a design principle where all derived calculations in a data system can be expressed as a re-computation function over all of your data. This re-computation would be done over immutable data readily available.

Lambda Architecture is made of 3 layers,part played in the Lambda Architecture is summarized below :

  1. Batch Layer which computes functions over all data with high latency and rewrites immutable fact transformations into your data stores (e.g. via Hadoop,MongoDB in our case)
  2. Speed Layer which computes functions over recent data with low latency and mutates your real-time data stores directly (e.g. via Storm)
  3. Serving Layer which abstracts over those two to provide unified answers to real-time and historical questions (e.g. Cloudera Impala,ElasticSearch in our case)



The purpose of the batch layer is to serve as the immutable data store. Its purpose is to read and create out of the the four CRUD(Create,Read,Update and Delete) operations. (Reason the data is immutable). The database to be used for the batch layer should be able to support faster reads and write. With these as our priority we can safely cross out relational databases because consistency is not our highest priority when it comes to reading and creating.

Because I don’t have the time to test all the available NoSQL databases to see which of them supports faster reads and writes, I searched online. I regretted. To be honest,this was the hardest part. I was so overwhelmed with contradicting performance reports I felt I should test them all myself. But I don’t have the time or the resources to do that now. Hands down,the clear winner is Hadoop. I was actually looking for Hadoop alternative because I wanted anyone could easily deploy and have it up and running in no time.

So I picked MongoDB.

Disclaimer: I picked MongoDB as my batch layer,it doesn’t in anyway mean its the best option(at the time of this post). So If you or your organization has a better reason to pick a MongoDB alternative. Please do.

Other considerations were Aerospike, Cassandra,ElephantDB and definitely Hadoop. But whatever your choice is,the goal is to have faster,concurrent reads and writes.

The speed layer or the real time layer takes the stream of data,real time,calculates indexes the data. Obviously this is not immutable data.

Why do I use Apache Storm? It was “born” for this.

“Apache Storm is a free and open source distributed realtime computation system. Storm makes it easy to reliably process unbounded streams of data, doing for realtime processing what Hadoop did for batch processing. Storm is simple, can be used with any programming language, and is a lot of fun to use!

Storm has many use cases: realtime analytics, online machine learning, continuous computation, distributed RPC, ETL, and more. Storm is fast: a benchmark clocked it at over a million tuples processed per second per node. It is scalable, fault-tolerant, guarantees your data will be processed, and is easy to set up and operate.”

And also Nathan Marz who first wrote about the Lambda Architecture created Apache Storm as well.

Why Apache Kafka?

We need a resilient messaging queue that would feed the speed layer with the stream of data. Sort of like a pool for all stream data.So we have one source for getting the data.

This and this is why I chose Apache Kafka.

“Elasticsearch is a flexible and powerful open source, distributed, real-time search and analytics engine. Architecture is from the ground up for use in distributed environments where reliability and scalability are must haves, Elasticsearch gives you the ability to move easily beyond simple full-text search. Through its robust set of APIs and query DSLs, plus clients for the most popular programming languages, Elasticsearch delivers on the near limitless promises of search technology”

The serving layer combines the output from the batch and speed layer. This layer helps us get the data,combined, from both the batch and serving layer.

Output from the batch and speed layers are stored in the serving layer, which responds to ad-hoc queries by returning pre-computed views or building views from the processed data

The serving layer provides and answers to getting historical(batch) data and real time data(speed).

If you end up using MongoDB as your batch layer you can use MongoDB River. This would help keep (backup) records for the historical data with minimal configuration.
For the real-time data.Our Speed layer using a Storm Spout would help us aggregate and index real-time data in ElasticSearch.

Putting It All together - The Lambda RT Project



REFERENCES

http://jameskinley.tumblr.com/post/37398560534/the-lambda-architecture-principles-for-architecting - James Kinley

This post is licensed under CC BY 4.0 by the author.