Set Up a Highly Available Hadoop Cluster on Ubuntu, Debian

Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using simple programming models. It is designed to scale up from single servers to thousands of machines, each offering local computation and storage.


Rather than rely on hardware to deliver high-availability, the library itself is designed to detect and handle failures at the application layer, so delivering a highly-available service on top of a cluster of computers, each of which may be prone to failures.

Before installing and configuring the master and worker nodes, it’s important to understand the different components of a Hadoop cluster.

A master node maintains knowledge about the distributed file system, like the inode table on an ext4 file-system, and schedules resources allocation. For this guide, master-node will handle this role and host following two daemons:

NameNode manages the distributed file system and knows where stored data blocks inside the cluster are.
ResourceManager manages the YARN jobs and takes care of scheduling and executing processes on worker nodes.

Worker nodes store the actual data and provide processing power to run the jobs. For this guide, worker-node1 and worker-node2 will handle this role and host following two daemons:

DataNode manages the physical data stored on the node; it’s named, NameNode.
NodeManager manages execution of tasks on the node.


Prerequisites

To follow this tutorial, you will need three (physical or virtual) machines installed with Ubuntu server having sudo non-root user privileges. Please note that, this guide is specifically written for Ubuntu 18.04, 19.04, 19.10, 20.04 and Debian 9, 10.

We will use following three nodes for this guide:

NameIPPurpose
master-node192.168.10.1Master Node
worker-node1192.168.10.2Worker Node1
worker-node2192.168.10.3Worker Node2

You should set hostname on each node using the below command:
sudo hostnamectl set-hostname master-node

Also, set the correct timezone on each node using the below command:
sudo timedatectl set-timezone Asia/Karachi

Update Hosts File

For each node to communicate with each other by name, map the IP addresses of three servers against their name.

Edit the /etc/hosts file on master-node, worker-node1, worker-node2 like below:
sudo nano /etc/hosts

Remove everything and add your nodes ip and names like below:
192.168.10.1    master-node
192.168.10.2    worker-node1
192.168.10.3    worker-node2

Make sure you replace the ip addresses with yours, Save and close file when you are finished.

Adding Hadoop User

Type below command on all of the nodes (master-node, worker-node1, worker-node2) in our case to create a user called hadoop:
sudo adduser hadoop

This user will handle the Hadoop installation and configuration on each node.

You will see similar to below prompts where you have to create password for hadoop user
Adding user `hadoop' ...
Adding new group `hadoop' (1001) ...
Adding new user `hadoop' (1001) with group `hadoop' ...
Creating home directory `/home/hadoop' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Changing the user information for hadoop
Enter the new value, or press ENTER for the default
        Full Name []: Hadoop Administrator
        Room Number []:
        Work Phone []:
        Home Phone []:
        Other []:
Is the information correct? [Y/n] y

Lastly press Y and Enter to complete user creation process.

Next, add hadoop user to sudo group with below command:
sudo adduser hadoop sudo

You will see the output similar like below:
Adding user `hadoop' to group `sudo' ...
Adding user hadoop to group sudo
Done.

SSH Key-Pair Authentication

The master node will use an SSH connection to connect to other nodes with key-pair authentication. to actively manage the cluster. For this, we need to set up key-pair ssh authentication on each node.

Login to your master-node as the hadoop user, and generate an SSH key like below:
ssh-keygen

Repeat the same on worker-node1, worker-node2 as the hadoop user to generate an SSH key.

Next, on the master-node, in the /home/hadoop/.ssh directory, you should see the id_rsa.pub file.

You need to copy id_rsa.pub contents to authorized_keys, then transfer it to remote node like below:
ssh-copy-id -i ~/.ssh/id_rsa.pub localhost
scp ~/.ssh/authorized_keys worker-node1:~/.ssh/

On worker-node1, copy id_rsa.pub contents to authorized_keys, then transfer it to remove node like below:
ssh-copy-id -i ~/.ssh/id_rsa.pub localhost
scp ~/.ssh/authorized_keys worker-node2:~/.ssh/

On worker-node2, copy id_rsa.pub contents to authorized_keys, then transfer it to remove node like below:
ssh-copy-id -i ~/.ssh/id_rsa.pub localhost
scp ~/.ssh/authorized_keys master-node:~/.ssh/
scp ~/.ssh/authorized_keys worker-node1:~/.ssh/

If everything setup correctly as described, you will be able to connect each other node via ssh with key-pair without providing password.

Installing OpenJDK

You can install OpenJDK 11 on (master-node, worker-node1, worker-node2) with below command:
sudo apt -y install openjdk-11-jdk

Set Java Home Environment

Hadoop comes with code and configuration that references the JAVA_HOME environment variable. This variable points to the java binary file, allowing them to run java code.

You can set up JAVA_HOME variable on each node like below:
echo "JAVA_HOME=$(which java)" | sudo tee -a /etc/environment

Reload your system’s environment variables with below command:
source /etc/environment

Verify the variable was set correctly:
echo $JAVA_HOME

This should return the path to the java binary.

Set Environment Variables

You need to manually set hadoop binaries location into system path.

Edit /home/hadoop/.profile like below:
nano /home/hadoop/.profile

add following line at the end of the file:
PATH=/home/hadoop/hadoop/bin:/home/hadoop/hadoop/sbin:$PATH

Save and close when you are finished.

Next, edit .bashrc like below:
nano /home/hadoop/.bashrc

add following lines at the end of the file:
export HADOOP_HOME=/home/hadoop/hadoop
export PATH=${PATH}:${HADOOP_HOME}/bin:${HADOOP_HOME}/sbin

Save and close.

Repeat the same on worker-node1, worker-node2 as well.

Download Hadoop

On master-node as the hadoop user, download the Hadoop tarball file, and unzip it. At the time of writing this article, hadoop 3.1.3 was the most latest available release.
cd ~
wget http://apache.cs.utah.edu/hadoop/common/current/hadoop-3.1.3.tar.gz
tar -xzf hadoop-3.1.3.tar.gz
mv hadoop-3.1.3 hadoop

Configuring Hadoop

In this section, we'll configure hadoop on master-node first, then replicate the configuration to worker-node1, worker-node2.

On master-node, type below command to find java installation path:
update-alternatives --display java

This will return output similar to the following:
java - auto mode
link best version is /usr/lib/jvm/java-11-openjdk-amd64/bin/java
link currently points to /usr/lib/jvm/java-11-openjdk-amd64/bin/java
link java is /usr/bin/java
/usr/lib/jvm/java-11-openjdk-amd64/bin/java - priority 1111
slave java.1.gz is /usr/share/man/man1/java.1.gz
slave java.1.gz: /usr/lib/jvm/java-11-openjdk-amd64/man/man1/java.1.gz

Take the value of the (link best version is) and remove the trailing /bin/java. For example on Ubuntu or Debian, the link is /usr/lib/jvm/java-11-openjdk-amd64/bin/java, so JAVA_HOME should be /usr/lib/jvm/java-11-openjdk-amd64.

Edit ~/hadoop/etc/hadoop/hadoop-env.sh like below:
cd ~
nano hadoop/etc/hadoop/hadoop-env.sh

Uncomment by removing # and update JAVA_HOME line like below:
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64

Save and close when you are finished.

Next, edit core-site.xml file to set the NameNode location to master-node on port 9000:
nano hadoop/etc/hadoop/core-site.xml

add the following code, make sure you replace master-node with yours:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
    <configuration>
        <property>
            <name>fs.default.name</name>
            <value>hdfs://master-node:9000</value>
        </property>
    </configuration>

Save and close.

Next, edit hdfs-site.conf to resemble the following configuration:
nano hadoop/etc/hadoop/hdfs-site.xml

add following code:
<configuration>
    <property>
            <name>dfs.namenode.name.dir</name>
            <value>/home/hadoop/data/nameNode</value>
    </property>
    <property>
            <name>dfs.datanode.data.dir</name>
            <value>/home/hadoop/data/dataNode</value>
    </property>
    <property>
            <name>dfs.replication</name>
            <value>2</value>
    </property>
</configuration>

Save and close.

Note that the last property string dfs.replication, indicates how many times data is replicated in the cluster. We set 2 to have all the data duplicated on the two of our worker nodes.

If you have only one worker node, enter 1, if you have three, enter 3 but don’t enter a value higher than the actual number of worker nodes you have.

Next, edit the mapred-site.xml file, setting YARN as the default framework for MapReduce operations:
nano hadoop/etc/hadoop/mapred-site.xml

add following code:
<configuration>
    <property>
            <name>mapreduce.framework.name</name>
            <value>yarn</value>
    </property>
    <property>
            <name>yarn.app.mapreduce.am.env</name>
            <value>HADOOP_MAPRED_HOME=$HADOOP_HOME</value>
    </property>
    <property>
            <name>mapreduce.map.env</name>
            <value>HADOOP_MAPRED_HOME=$HADOOP_HOME</value>
    </property>
    <property>
            <name>mapreduce.reduce.env</name>
            <value>HADOOP_MAPRED_HOME=$HADOOP_HOME</value>
    </property>
</configuration>

Save and close.

Next, edit yarn-site.xml, which contains the configuration options for YARN.
nano hadoop/etc/hadoop/yarn-site.xml

add below code, make sure you replace 192.168.10.1 with the your master-node's ip address:
<configuration>
    <property>
            <name>yarn.acl.enable</name>
            <value>0</value>
    </property>
    <property>
            <name>yarn.resourcemanager.hostname</name>
            <value>192.168.10.1</value>
    </property>
    <property>
            <name>yarn.nodemanager.aux-services</name>
            <value>mapreduce_shuffle</value>
    </property>
</configuration>

Save and close.

Next, edit workers file to include both of the worker nodes (worker-node1, worker-node2):

nano hadoop/etc/hadoop/workers

Remove localhost if exists, add your worker nodes like below:
worker-node1
worker-node2

Save and close.

The workers file is used by startup scripts to start required daemons on all nodes.

Next, edit yarn-site.xml file to set up memory allocation:
nano hadoop/etc/hadoop/yarn-site.xml

add the following code:
<property>
        <name>yarn.nodemanager.resource.memory-mb</name>
        <value>1536</value>
</property>
<property>
        <name>yarn.scheduler.maximum-allocation-mb</name>
        <value>1536</value>
</property>
<property>
        <name>yarn.scheduler.minimum-allocation-mb</name>
        <value>128</value>
</property>
<property>
        <name>yarn.nodemanager.vmem-check-enabled</name>
        <value>false</value>
</property>

Save and close.

The last property disables virtual-memory checking which can prevent containers from being allocated properly with openjdk-11 if enabled.

Note: Memory allocation can be tricky on low RAM nodes because default values are not suitable for nodes with less than 8GB of RAM. We have manually set memory allocation for MapReduce jobs, and provide a sample configuration for 2GB RAM nodes.

Next, edit mapred-site.xml file:
nano hadoop/etc/hadoop/mapred-site.xml

add the following code:
<property>
        <name>yarn.app.mapreduce.am.resource.mb</name>
        <value>512</value>
</property>
<property>
        <name>mapreduce.map.memory.mb</name>
        <value>256</value>
</property>
<property>
        <name>mapreduce.reduce.memory.mb</name>
        <value>256</value>
</property>

Save and close.

We have completed hadoop configuration on master-node.

Configure Worker Nodes

This section will show you how to duplicate hadoop configuration from master-node to all work nodes.

First copy the hadoop tarball file from master-node to worker nodes like below:
scp /home/hadoop/hadoop-*.tar.gz worker-node1:/home/hadoop/
scp /home/hadoop/hadoop-*.tar.gz worker-node2:/home/hadoop/

Next, login to worker-node1 as the hadoop user via SSH and unzip the hadoop archive, rename the directory then exit from worker-node1 to get back on the master-node:
ssh worker-node1
tar -xzf hadoop-3.1.2.tar.gz
mv hadoop-3.1.2 hadoop
exit

Repeat the same on worker-node2.

Next, duplicate the Hadoop configuration files from master-node to all worker nodes:
for node in worker-node1 worker-node2; do
scp ~/hadoop/etc/hadoop/* $node:/home/hadoop/hadoop/etc/hadoop/;
done

Make sure you replace worker-node1, worker-node2 with your worker nodes name.

Next, login to master-node as the hadoop user, type the below command to format hadoop file system:
hdfs namenode -format

With this hdfs format, your hadoop installation is now configured and ready to run.

Start Hadoop Cluster

This section will show you how to start, stop and monitor hadoop that everything is properly working.

Start the HDFS by running the following script on master-node:
start-dfs.sh

You will see similar to the following output:
Starting namenodes on [master-node]
Starting datanodes
worker-node2: WARNING: /home/hadoop/hadoop/logs does not exist. Creating.
worker-node1: WARNING: /home/hadoop/hadoop/logs does not exist. Creating.
Starting secondary namenodes [master-node]

This will start NameNode and SecondaryNameNode components on master-node, and DataNode on worker-node1 and worker-node2, according to the configuration in the workers config file.

Check that every process is running with the jps command on each node.

On master-node, type jps and you should see the following:
3009 SecondaryNameNode
2724 NameNode
3129 Jps

On worker-node1 and worker-node2, type jps and you should see the following:
14376 Jps
14190 DataNode

To stop HDFS, you can type below command on master-node:
stop-dfs.sh

This will stop HDFS on each node (master-node, worker-node1, worker-node2):

You can get useful information about your HDFS cluster with the below command.
hdfs dfsadmin -report

This will print information (e.g., capacity and usage) for all running DataNodes like below:
Configured Capacity: 84008173568 (78.24 GB)
Present Capacity: 67072004096 (62.47 GB)
DFS Used: 2588672 (2.47 MB)

DFS Remaining: 67069415424 (62.46 GB)
DFS Used%: 0.00%
Replicated Blocks:
        Missing blocks: 0

Under replicated blocks: 0
        Blocks with corrupt replicas: 0
        Low redundancy blocks with highest priority to recover: 0

Missing blocks (with replication factor 1): 0
        Pending deletion blocks: 0
Erasure Coded Block Groups:
        Low redundancy blocks with highest priority to recover: 0

Low redundancy block groups: 0
        Block groups with corrupt internal blocks: 0
        Missing block groups: 0
Hostname: worker-node1

Pending deletion blocks: 0

-------------------------------------------------
Live datanodes (2):

Name: 192.168.10.2:9866 (worker-node1)
DFS Remaining: 33534689280 (31.23 GB)

Decommission Status : Normal
Configured Capacity: 42004086784 (39.12 GB)
DFS Used: 1294336 (1.23 MB)
Non DFS Used: 6304002048 (5.87 GB)
DFS Used%: 0.00%
Last contact: Fri Mar 06 12:19:30 PKT 2020

DFS Remaining%: 79.84%
Configured Cache Capacity: 0 (0 B)
Cache Used: 0 (0 B)
Cache Remaining: 0 (0 B)
Cache Used%: 100.00%
Cache Remaining%: 0.00%
Xceivers: 1
Configured Capacity: 42004086784 (39.12 GB)

Last Block Report: Fri Mar 06 11:29:35 PKT 2020
Num of Blocks: 3

Name: 192.168.10.3:9866 (worker-node2)
Hostname: worker-node2
Decommission Status : Normal
DFS Used: 1294336 (1.23 MB)
Cache Used%: 100.00%

Non DFS Used: 6303965184 (5.87 GB)
DFS Remaining: 33534726144 (31.23 GB)
DFS Used%: 0.00%
DFS Remaining%: 79.84%
Configured Cache Capacity: 0 (0 B)
Cache Used: 0 (0 B)
Cache Remaining: 0 (0 B)
Cache Remaining%: 0.00%
Num of Blocks: 3

Xceivers: 1
Last contact: Fri Mar 06 12:19:28 PKT 2020
Last Block Report: Thu Mar 05 21:22:07 PKT 2020

You can get the description of all available commands like below:
hdfs dfsadmin -help

Next, open up your preferred web browser and navigate to http://your_master_node_IP:9870, and you’ll get a user-friendly HDFS monitoring web console like below:


Testing HDFS Cluster

You can test your HDFS cluster by writing and reading some contents using hdfs dfs command. First, manually create your home directory. All other commands will use a path relative to this default home directory:

On master-node, type below command:
hdfs dfs -mkdir -p /user/hadoop

We'll use few textbooks from the Gutenberg project as an example for this guide.

Create a books directory in HDFS. The following command will create it in the home directory, /user/hadoop/books:
hdfs dfs -mkdir books

Now download a few books from the Gutenberg project:
cd /home/hadoop
wget -O franklin.txt http://www.gutenberg.org/files/13482/13482.txt
wget -O herbert.txt http://www.gutenberg.org/files/20220/20220.txt
wget -O maria.txt http://www.gutenberg.org/files/29635/29635.txt

Next, put these three books through HDFS, in the books directory:
hdfs dfs -put franklin.txt herbert.txt maria.txt books

List the contents of the books directory:
hdfs dfs -ls books

You will see output similar to the following:
Found 3 items

-rw-r--r--   2 hadoop hadoop     174481 2020-03-05 22:30 books/franklin.txt
-rw-r--r--   2 hadoop hadoop     450783 2020-03-05 22:30 books/herbert.txt
-rw-r--r--   2 hadoop hadoop     607788 2020-03-05 22:30 books/maria.txt

Next, move one of the books to the local filesystem:
hdfs dfs -get books/franklin.txt

You can also directly print the books on terminal from HDFS:
hdfs dfs -cat books/maria.txt

These are just few example of commands. However, there are many commands to manage your HDFS. For a complete list, you can look at the Apache HDFS shell documentation, or print help with:
hdfs dfs -help

Start YARN

HDFS is a distributed storage system, and doesn’t provide any services for running and scheduling tasks in the cluster. This is the role of the YARN framework. The following section is about starting, monitoring, and submitting jobs to YARN.

On master-node, you can start YARN with the below script:
start-yarn.sh

You will see the output like below:
Starting resourcemanager
Starting nodemanagers

Check that everything is running with the jps command. In addition to the previous HDFS daemon, you should see a ResourceManager on master-node, and a NodeManager on worker-node1 and worker-node2.

To stop YARN, run the following command on master-node:
stop-yarn.sh

Similarly, you can get a list of running applications with below command:
yarn application -list

To get all available parameters of the yarn command, see Apache YARN documentation.

As with HDFS, YARN provides a friendlier web UI, started by default on port 8088 of the Resource Manager. You can navigate to http://master-node-IP:8088 to browse the YARN web console:

Submit MapReduce Jobs to YARN

YARN jobs are packaged into jar files and submitted to YARN for execution with the command yarn jar. The Hadoop installation package provides sample applications that can be run to test your cluster. You’ll use them to run a word count on the three books previously uploaded to HDFS.

On master-node, submit a job with the sample jar to YARN:
yarn jar ~/hadoop/share/hadoop/mapreduce/hadoop-mapreduce-examples-3.1.3.jar wordcount "books/*" output

The last argument is where the output of the job will be saved - in HDFS.

After the job is finished, you can get the result by querying HDFS with:
hdfs dfs -ls output

If above command return success, the output will resemble:
Found 2 items

-rw-r--r--   2 hadoop hadoop          0 2020-03-05 17:21 output/_SUCCESS
-rw-r--r--   2 hadoop hadoop     789726 2020-03-05 17:21 output/part-r-00000

Print the result with:
hdfs dfs -cat output/part-r-00000 | less

Wrapping up

Now that you have a YARN cluster up and running, you can learn how to code your own YARN jobs with Apache documentation and install Spark on top of your YARN cluster. You may wish to consult the following resources for additional information on this topic.

4 comments:

  1. Caused by: java.net.BindException: Cannot assign requested address
    anyone know what's problem?

    ReplyDelete
    Replies
    1. There must be another process bound to the same port it can not assign.

      Type netstat -plten |grep java

      This will give an output similar to:

      tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 1001 76084 9488/java

      Here 8080 is the port number at which the java process is listening and 9488 is its process id (pid).

      In order to free the occupied port, you have to kill this process using the kill command.

      kill -9 9488

      9488 is the process id from earlier. We use -9 to force stop the process.

      Your port should now be free and you can run your program

      Delete
  2. if my master server ip address is 192.168.0.163
    can you continued using this ip ? if yes , what is the other nodes address?

    ReplyDelete
    Replies
    1. If your master node ip is 192.168.0.163, then your other two worker nodes ip can be 192.168.0.164, and 165 or it can be different but should be reachable across the nodes in the cluster.

      Delete

Powered by Blogger.