This blog will cover the following topics:

What is Hadoop Architecture in Big Data?

Apache Hadoop was developed with the goal of having an inexpensive, redundant data store that would enable organizations to leverage Big Data Analytics economically and increase the profitability of the business.

A Hadoop architectural design needs to have several design factors in terms of networking, computing power, and storage. Hadoop provides a reliable, scalable, flexible, and distributed computing Big Data framework.

Let us have a look at some of the key terms associated with Hadoop to better understand it:

  • NameNode: NameNode is basically a master node that acts like a monitor and supervises operations performed by DataNodes.
  • Secondary NameNode: A Secondary NameNode plays a vital role in case there is some technical issue in the NameNode.
  • DataNode: DataNode is the slave node that stores all files and processes.
  • Mapper: Mapper maps data or files in the DataNodes. It will go to every DataNode and run a particular set of codes or operations in order to get the work done.
  • Reducer: While a Mapper runs a code, a Reducer is required for getting the result from each Mapper.
  • JobTracker: JobTracker is a master node used for getting the location of a file in different DataNodes. It is a very important service in Hadoop as if it goes down, all the running jobs will get halted.
  • TaskTracker: TaskTracker is a reference for the JobTracker present in the DataNodes. It accepts different tasks, such as map, reduces, and shuffle operations, from the JobTracker. It is a key player performing the main MapReduce functions.
  • Block: Block is a small unit wherein the files are split. It has a default size of 64 MB and can be increased as needed.
  • Cluster: A cluster is a set of machines such as DataNodes, NameNodes, Secondary NameNodes, etc.

Interested in watching a video tutorial on Hadoop, here is one!

The Hadoop architecture is made up of the following components:

  1. Hadoop Distributed File System (HDFS)
  2. MapReduce Layer
  3. Yet Another Resource Negotiator(YARN)

Let us understand in detail about all the above three components:

Hadoop Distributed File System (HDFS)

HDFS is based on Google File System (GFS) that provides a distributed system particularly designed to run on commodity hardware. The file system has several similarities with the existing distributed file systems. However, HDFS does stand out among all of them. This is because it is fault-tolerant and is specifically designed for deploying on low-cost hardware.

HDFS is mainly responsible for taking care of the storage parts of Hadoop applications. So, if you have a 100 MB file that needs to be stored in the file system, then in HDFS, this file will be split into chunks, called blocks. The default size of each block in Hadoop 1 is 64 MB, on the other hand in Hadoop 2 it is 128 MB. For example, in Hadoop version 1, if we have a 100 MB file, it will be divided into 64 MB stored in one block and 36 MB in another block. Also, each block is given a unique name, i.e., blk_n (n = any number). Each block is uploaded to one DataNode in the cluster. On each of the machines or clusters, there is something called as a daemon or a piece of software that runs in the background.

Hadoop Distributed File System

The daemons of HDFS are as follows:

NameNode: It is the master node that maintains or manages all data. It points to DataNodes and retrieves data from them. The file system data is stored on a NameNode.

Secondary NameNode: It is the master node and is responsible for keeping the checkpoints of the file system metadata that is present on the NameNode.

DataNode: DataNodes have the application data that is stored on the servers. It is the slave node that basically has all the data of the files in the form of blocks.

As we know, HDFS stores the application data and the files individually on dedicated servers. The file content is replicated by HDFS on various DataNodes based on the replication factor to assure the authenticity of the data. The DataNode and the NameNode communicate with each other using TCP protocols.

The following prerequisites are required to be satisfied by HDFS for the Hadoop architecture to perform efficiently:

  • There must be good network speed in order to manage data transfer.
  • Hard drives should have a high throughput.

Certification in Bigdata Analytics

MapReduce Layer

MapReduce is a patented software framework introduced by Google to support distributed computing on large datasets on clusters of computers.

It is basically an operative programming model that runs in the Hadoop background providing simplicity, scalability, recovery, and speed, including easy solutions for data processing. This MapReduce framework is proficient in processing a tremendous amount of data parallelly on large clusters of computational nodes.

MapReduce is a programming model that allows you to process your data across an entire cluster. It basically consists of Mappers and Reducers that are different scripts you write or different functions you might use when writing a MapReduce program. Mappers have the ability to transform your data in parallel across your computing cluster in a very efficient manner; whereas, Reducers are responsible for aggregating your data together.

Mappers and Reducers put together can be used to solve complex problems.

MapReduce Layer

Enroll in this Hadoop Training in Bangalore to learn about Hadoop concepts in detail.

Working of the MapReduce Architecture

The job of MapReduce starts when a client submits a file. The file first goes to the JobTracker. It combines Reduce functions, with the location, for input and output data. When a file is received, the JobTracker sends a request to the NameNode that has the location of the DataNode. The NameNode will send that location to the JobTracker. Next, the JobTracker will go to that location in the DataNode. Then, the JobTracker present in the DataNode sends a request to the select TaskTrackers.

Next, the processing of the map phase begins. In this phase, the TaskTracker retrieves all the input data. For each record, a map function is invoked, which has been parsed by the ‘InputFormat’ producing key–value pairs in the memory buffer. Sorting the memory buffer is done next wherein different reducer nodes are sorted by invoking a function called combine. When the map task is completed, the JobTracker gets a notification from the TaskTracker for the same. Once all the TaskTrackers notify the JobTracker, the JobTracker notifies the select TaskTrackers, to begin with the reduce phase. The TaskTracker’s work now is to read the region files and sort the key–value pairs for each and every key. Lastly, the reduce function is invoked, which collects the combined values into an output file.

What is Big Data? Learn more from Intellipaat’s Top Big Data Hadoop Interview Questions and crack all Big Data interviews!

Get 100% Hike!

Master Most in Demand Skills Now !

Next in this section on Hadoop Architecture, let’s see how Hadoop works.

Yet Another Resource Negotiator(YARN)

YARN is one of the core components of the open-source Apache Hadoop distributed processing frameworks which helps in job scheduling of various applications and resource management in the cluster. YARN was initially called ‘MapReduce 2’ since it took the original MapReduce to another level by giving new and better approaches for decoupling MapReduce resource management for scheduling capabilities from the data processing unit.

The underlying idea of YARN is to create fragmented functionalities for effective resource management in the entire Hadoop ecosystem. YARN helps in bifurcating scheduled jobs into various daemons.

YARN is being extensively used for writing applications by Hadoop Developers. It lets them create applications, work with huge amounts of data, and manipulate them in an efficient manner.

YARN

The above image displays the architecture of YARN. To know more about YARN, visit our tutorial on Hadoop YARN.

How does Hadoop work?

Hadoop runs code across a cluster of computers and performs the following tasks:

  • Data is initially divided into files and directories. Files are then divided into consistently sized blocks ranging from 128 MB in Hadoop 2 to 64 MB in Hadoop 1.
  • Then, the files are distributed across various cluster nodes for further processing of data.
  • The JobTracker starts its scheduling programs on individual nodes.
  • Once all the nodes are done with scheduling, the output is returned.

Data from HDFS is consumed through MapReduce applications. HDFS is also responsible for multiple replicas of data blocks that are created along with the distribution of nodes in a cluster, which enables reliable and extremely quick computations.

So, in the first step, the file is divided into blocks and is stored in different DataNodes. If a job request is generated, it is directed to the JobTracker.

Hadoop work

The JobTracker doesn’t really know the location of the file. So, it contacts the NameNode for this.

Request

The NameNode will now find the location and give it to the JobTracker for further processing.

Namenode

Now, since the JobTracker knows the location of the blocks of the requested file, it will contact the TaskTracker present on a particular DataNode for the data file.

Namenode image

The TaskTracker will now send the data it has to the JobTracker.

TaskTracker

Finally, the JobTracker will collect the data and send it back to the requested source.

What is Big Data? If you have more queries related to Big Data Hadoop, do post them on Big Data Hadoop and Spark Community!

How does Yahoo! use Hadoop Architecture?

In Yahoo!, there are 36 different Hadoop clusters that are spread across Apache HBase, Storm, and YARN, i.e., there are 60,000 servers in total made from 100s of distinct hardware configurations. Yahoo! runs the largest multi-tenant Hadoop installation in the world. There are approximately 850,000 Hadoop jobs daily, which are run by Yahoo!.

The cost of storing and processing data using Hadoop is the best way to determine whether Hadoop is the right choice for your company. When comparing on the basis of the expense for managing data, Hadoop is much cheaper than any legacy systems.

In this section of the Hadoop tutorial, we learned about the two layers present in the Hadoop architecture. We also saw how Yahoo! uses Hadoop. Now that we have seen the robust architecture of Hadoop, let’s move on with our next section of the tutorial, i.e., Hadoop installation.
Become a Big Data Architect

Course Schedule

Name Date Details
Big Data Course 23 Mar 2024(Sat-Sun) Weekend Batch
View Details
Big Data Course 30 Mar 2024(Sat-Sun) Weekend Batch
View Details
Big Data Course 06 Apr 2024(Sat-Sun) Weekend Batch
View Details