Book Image

Learning Storm

By : Ankit Jain, Anand Nalya
Book Image

Learning Storm

By: Ankit Jain, Anand Nalya

Overview of this book

<p>Starting with the very basics of Storm, you will learn how to set up Storm on a single machine and move on to deploying Storm on your cluster. You will understand how Kafka can be integrated with Storm using the Kafka spout.</p> <p>You will then proceed to explore the Trident abstraction tool with Storm to perform stateful stream processing, guaranteeing single message processing in every topology. You will move ahead to learn how to integrate Hadoop with Storm. Next, you will learn how to integrate Storm with other well-known Big Data technologies such as HBase, Redis, and Kafka to realize the full potential of Storm.</p> <p>Finally, you will perform in-depth case studies on Apache log processing and machine learning with a focus on Storm, and through these case studies, you will discover Storm's realm of possibilities.</p>
Table of Contents (16 chapters)
Learning Storm
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Splitting the server log line


Now, we will create a new Storm topology that will read the data from Kafka using the KafkaSpout spout, process the server logfiles, and store the process data in MySQL for further analysis.

In this section, we will write a bolt, ApacheLogSplitterBolt, which has logic to fetch the IP address, status code, referrer, bytes sent, and other such information from the server log line. We will create a new Maven project for this use case:

  1. Create a new Maven project with com.learningstorm for groupId and stormlogprocessing for artifactId.

  2. Add the following dependencies to the pom.xml file:

        <!-- Dependency for Storm -->
        <dependency>
          <groupId>storm</groupId>
          <artifactId>storm-core</artifactId>
          <version>0.9.0.1</version>
          <scope>provided</scope>
        </dependency>
        <dependency>
          <groupId>com.google.guava</groupId>
          <artifactId>guava</artifactId...