Posts

Showing posts from June, 2016

Setting up Heron Cluster with Apache Aurora Locally

Image
In this post we will be looking at how we can setup Heron steam processing engine in Apache Aurora in our local machine. Oh Boy this is going to be a long post :D. I am doing this on Ubuntu 14.04 and these steps should be similar to any Linux machine. Heron supports deployment in Apache Aurora out of the box. Apache Aurora will act as the Scheduler for Heron after the setup is complete. In order to do this first you will have to setup Apache Zookeeper and allow Heron to communicate with it. Here Apache Zookeeper will act as the State Manager of the Heron deployment. if you just want to setup a local cluster without the hassle of  installing aurora take a look at my previous blog post -  Getting started with Heron stream processing engine in Ubuntu 14.04 Setting Up Apache Aurora Cluster locally  First thing we need to do is to setup Apache Aurora locally. I will try to explain as much of the configurations as i can as we go on. First lets get a Apache Aurora cluster running on our

Getting started with Heron stream processing engine in Ubuntu 14.04

I was trying to get started with Heron which is a stream processing engine from twitter and faced some problems when trying to do the initial setup on Ubuntu. I am using Ubuntu 14.04 so not these problems might not happen in other Ubuntu versions. The steps below are simply following the steps in the Heron documentation . But since i am working on Ubuntu we will only show the steps for Ubuntu. Step 1.a : Download installation script files You can download the script files that match to Ubuntu from  https://github.com/twitter/heron/releases/tag/0.14.0 For the 0.14.0 release the files you need to download will be the following. heron-client-install-0.14.0-ubuntu.sh heron-tools-install-0.14.0-ubuntu.sh Optionally - You want need the following for the steps in the blog post heron-api-install-0.14.0-ubuntu.sh heron-core-0.14.0-ubuntu.tar.gz Step 1.b: Execute the client and tools shell scripts $ chmod +x heron-client-install-VERSION-PLATFORM.sh $ ./heron-client-install-V

Apache Hadoop MapReduce - Detailed word count example from scratch

Image
In this post we will look at how to create and run a word count program in Apache Hadoop. In order to make it easy for a beginner we will cover most of the setup steps as well. Please note that this blog entry is for Linux based environment. I am running Ubuntu 14.04 LTS on my machine. For windows users steps might be a little different, information regarding running Hadoop on Windows is available at   Build and Install Hadoop 2.x or newer on Windows . Prerequisites 1. Need to have Java installed (preferabally a newer java version such as 1.7 or 1.8 ) Download Oracle JDK 8 from  http://www.oracle.com/technetwork/java/javase/downloads/index.html  Extract the archive to a folder named jdk1.8.0 Set the following environment variables. (You can set the variables in the .bashrc file) JAVA_HOME= PATH=$JAVA_HOME/bin:$PATH export JAVA_HOME PATH 2. SSH, If you do not have ssh installed in your machine use the following command to install ssh and rsync which is also needed $ sud

Reading and Writing Binary files in java - Converting Endianness ( between Big-endian byte order and Little-endian byte order)

Image
In this post we will look into working with binary files in java. The end goal of the post will be to create simple java application that reads a binary file and write it back to a different binary file. The difference between the two files would be the byte order. If we read in a file with Big-endian byte order we will write it back with a Little-endian byte order and vice-versa. Lets first understand what is meant by byte order and what Big-endian and Little-endian are. If you are already familiar with this you can skip this section of the post You can find the complete code for Binary format converter that is explained in this post at GitHub -  https://github.com/pulasthi/binary-format-converter Understanding byte order and Endianness The endianness refers to the order that bytes are stored when storing multi byte values such as Integers and Doubles this is also known as the byte order. The endianness does not have any meaning when you consider a single byte that is s