Book Image

HBase High Performance Cookbook

By : Ruchir Choudhry
Book Image

HBase High Performance Cookbook

By: Ruchir Choudhry

Overview of this book

Apache HBase is a non-relational NoSQL database management system that runs on top of HDFS. It is an open source, disturbed, versioned, column-oriented store and is written in Java to provide random real-time access to big Data. We’ll start off by ensuring you have a solid understanding the basics of HBase, followed by giving you a thorough explanation of architecting a HBase cluster as per our project specifications. Next, we will explore the scalable structure of tables and we will be able to communicate with the HBase client. After this, we’ll show you the intricacies of MapReduce and the art of performance tuning with HBase. Following this, we’ll explain the concepts pertaining to scaling with HBase. Finally, you will get an understanding of how to integrate HBase with other tools such as ElasticSearch. By the end of this book, you will have learned enough to exploit HBase for boost system performance.
Table of Contents (19 chapters)
HBase High Performance Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface
7
Large-Scale MapReduce
Index

Configuring Lily Platform


Before we start, let's take a quick look at the supported versions and prerequisites you'll need to move ahead.

  • NOTE:

  • Only Linux and different flavors of Unix are supported currently.

The list of supported versions are as follows:

JDK/Java

1.6 version onwards

java –version should show

java version "1.8.0_31"

Java(TM) SE Runtime Environment (build 1.8.0_31-b13)

Java HotSpot(TM) 64-Bit Server VM (build 25.31-b07, mixed mode)

Remarks

Check whether JAVA_HOME is set or not.

Using echo $JAVA_HOME

should point to the Java lib in your machine.

How to do it…

  1. Open a terminal window and run the following command:

    wget  http://lilyproject.org/release/2.4/lily-2.4.tar.gz
    

    This will copy the latest lily tar file.

  2. Run the following command:

    tar zxvf lily-2.4.tar.gz
    

    This will create a folder containing all the files and libraries that will be used as we go.

Now let's go to the folder where your lily-2.4 directory is created.

  1. Lily requires JDK1.7 onwards version...