Hadoop Interview Questions and Answers

Hadoop Interview Questions and Answers

Last updated on 25th Sep 2020, Blog, Interview Question

About author

Gokul ( (Sr R&D Engineer ) )

High level Domain Expert in TOP MNCs with 12+ Years of Experience. Also, Handled Around 36+ Projects and Shared his Knowledge by Writing these Blogs for us.

(5.0) | 15823 Ratings 954

On this page, we have collected the most frequently asked questions along with their solutions that will help you to excel in the interview. But, before starting, I would like to draw your attention to the Hadoop revolution in the market. According to Forbes, 90% of global organizations report their investments in Big Data analytics, which clearly shows that the career for Hadoop professionals is very promising right now and the upward trend will keep progressing with time.

As the opportunities for Hadoop are unlimited, the competition for aspirants preparing for the interviews is also high. So, it’s essential for you to have strong knowledge in different areas of Hadoop under which the questions are asked. This definitive list of top Hadoop Interview Questions will cover the concepts including Hadoop HDFS, MapReduce, Pig, Hive, HBase, Spark, Flume, and Sqoop.

I hope these questions will be helpful for your Hadoop job and in case if you come across any difficult question in an interview and unable to find the best answer please mention it in the comments section below.

1. What is Apache Hadoop?

Ans:

Hadoop emerged as a solution to the “Big Data” problems. It is a part of the Apache project sponsored by the Apache Software Foundation (ASF). It is an open source software framework for distributed storage and distributed processing of large data sets. Open source means it is freely available and even we can change its source code as per our requirements. Apache Hadoop makes it possible to run applications on the system with thousands of commodity hardware nodes. It’s distributed file system has the provision of rapid data transfer rates among nodes. It also allows the system to continue operating in case of node failure.

Apache Hadoop provides:

  • Storage layer: HDFS
  • Batch processing engine: MapReduce
  • Resource Management Layer: Yarn

2. Why do we need Hadoop?

Ans:

The picture of Hadoop came into existence to deal with Big Data challenges. The challenges with Big Data are:

  1. 1. Storage: Since data is very large, storing such a huge amount of data is very difficult.
  2. 2. Security: Since the data is huge in size, keeping it secure is another challenge.
  3. 3. Analytics: In Big Data, most of the time we are unaware of the kind of data we are dealing with. So analyzing that data is even more difficult.
  4. 4. Data Quality: In the case of Big Data, data is very messy, inconsistent and incomplete.
  5. 5. Discovery: Using a powerful algorithm to find patterns and insights are very difficult.

Hadoop is an open-source software framework that supports the storage and processing of large data sets. Apache Hadoop is the best solution for storing and processing Big data because:

Apache Hadoop stores huge files as they are (raw) without specifying any schema.

High scalability: We can add any number of nodes, hence enhancing performance dramatically.

Reliable: It stores data reliably on the cluster despite machine failure.

High availability: In Hadoop data is highly available despite hardware failure. If a machine or hardware crashes, then we can access data from another path.

Economic: Hadoop runs on a cluster of commodity hardware which is not very expensive

3. What are the core components of Hadoop?

Ans:

Hadoop is an open-source software framework for distributed storage and processing of large datasets. Apache Hadoop core components are HDFS, MapReduce, and YARN.

HDFS: Hadoop Distributed File System (HDFS) is the primary storage system of Hadoop. HDFS stores very large files running on a cluster of commodity hardware. It works on the principle of storage of less number of large files rather than the huge number of small files. HDFS stores data reliably even in the case of hardware failure. It provides high throughput access to an application by accessing in parallel.

MapReduce:  MapReduce is the data processing layer of Hadoop. It writes an application that processes large structured and unstructured data stored in HDFS. MapReduce processes a huge amount of data in parallel. It does this by dividing the job (submitted job) into a set of independent tasks (sub-job). In Hadoop, MapReduce works by breaking the processing into phases.

Map and Reduce: The Map is the first phase of processing, where we specify all the complex logic code. Reduce is the second phase of processing. Here we specify light-weight processing like aggregation/summation.

YARN: YARN is the processing framework in Hadoop. It provides Resource management and allows multiple data processing engines. For example real-time streaming, data science, and batch processing.

4. What are the Features of Hadoop?

Ans:

The various Features of Hadoop are:

Open Source: Apache Hadoop is an open source software framework. Open source means it is freely available and even we can change its source code as per our requirements.

Distributed processing: As HDFS stores data in a distributed manner across the cluster. MapReduce processes the data in parallel on the cluster of nodes.

Fault Tolerance: Apache Hadoop is highly Fault-Tolerant. By default, each block creates 3 replicas across the cluster and we can change it as per needment. So if any node goes down, we can recover data on that node from the other node. Framework recovers failures of nodes or tasks automatically.

Reliability: It stores data reliably on the cluster despite machine failure.

High Availability: Data is highly available and accessible despite hardware failure. In Hadoop, when a machine or hardware crashes, then we can access data from another path.

Scalability: Hadoop is highly scalable, as one can add the new hardware to the nodes.

Economic: Hadoop runs on a cluster of commodity hardware which is not very expensive. We do not need any specialized machine for it.

Easy to use: No need for clients to deal with distributed computing, the framework takes care of all the things. So it is easy to use.

5. Compare Hadoop and RDBMS?

Ans:

Apache Hadoop is the future of the database because it stores and processes a large amount of data. Which will not be possible with the traditional database. There is some difference between Hadoop and RDBMS which are as follows:

Features RDBMS Hadoop
Architecture Traditional RDBMS have ACID properties Hadoop is a distributed computing framework having two main components namely, Distributed file system (HDFS) and MapReduce
Data acceptance RDBMS accepts only structured data Hadoop can accept both structured as well as unstructured data. It is a great feature of Hadoop, as we can store everything in our database and there will be no data loss
Scalability RDBMS is a traditional database which provides vertical scalability. So if the data increases for storing then we have to increase particular system configuration Hadoop provides horizontal scalability. So we just have to add one or more nodes to the cluster if there is any requirement for an increase in data
OLTP (Real-time data processing) and OLAP Traditional RDBMS support OLTP (Real-time data processing) OLTP is not supported in Apache Hadoop. Apache Hadoop supports large scale Batch Processing workloads (OLAP)
Cost Licensed software, therefore we have to pay for the software Hadoop is an open source framework, so we don’t need to pay for software

6. What are the modes in which Hadoop runs?

Ans:

Apache Hadoop runs in three modes:

Local (Standalone) Mode:

Hadoop by default run in a single-node, non-distributed mode, as a single Java process. Local mode uses the local file system for input and output operation. It is also used for debugging purposes, and it does not support the use of HDFS. Further, in this mode, there is no custom configuration required for configuration files.

Pseudo-Distributed Mode:

Just like the Standalone mode, Hadoop also runs on a single-node in a Pseudo-distributed mode. The difference is that each daemon runs in a separate Java process in this Mode. In Pseudo-distributed mode, we need configuration for all the four files mentioned above. In this case, all daemons are running on one node and thus, both Master and Slave nodes are the same.

Fully-Distributed Mode:

In this mode, all daemons execute in separate nodes forming a multi-node cluster. Thus, it allows separate nodes for Master and Slave.

7. What are the features of Standalone (local) mode?

Ans:

By default, Hadoop runs in a single-node, non-distributed mode, as a single Java process. Local mode uses the local file system for input and output operation. One can also use it for debugging purposes. It does not support the use of HDFS. Standalone mode is suitable only for running programs during development for testing. Further, in this mode, there is no custom configuration required for configuration files. Configuration files are:

  • core-site.xml
  • hdfs-site.xml files.
  • mapred-site.xml
  • yarn-default.xml

8. What are the features of Pseudo mode?

Ans:

 Just like the Standalone mode, Hadoop can also run on a single-node in this mode. The difference is that each Hadoop daemon runs in a separate Java process in this Mode. In Pseudo-distributed mode, we need configuration for all the four files mentioned above. In this case, all daemons are running on one node and thus, both Master and Slave nodes are the same.

The pseudo mode is suitable for both for development and in the testing environment. In the Pseudo mode, all the daemons run on the same machine.

9. What are the features of Fully-Distributed mode?

Ans:

 In this mode, all daemons execute in separate nodes forming a multi-node cluster. Thus, we allow separate nodes for Master and Slave.

We use this mode in the production environment, where ‘n’ number of machines form a cluster. Hadoop daemons run on a cluster of machines. There is one host onto which NameNode is running and the other hosts on which DataNodes are running. Therefore, NodeManager installs on every DataNode. And it is also responsible for the execution of the task on every single DataNode.

The ResourceManager manages all these NodeManager. ResourceManager receives the processing requests. After that, it passes the parts of the request to the corresponding NodeManager accordingly.

10. What are configuration files in Hadoop?

Ans:

Core-site.xml: It contains configuration settings for Hadoop core such as I/O settings that are common to HDFS &MapReduce. It uses Hostname and port .The most commonly used port is 9000.

  • <configuration>
  •   <property>
  •   <name>fs.defaultFS</name>
  •   <value>hdfs://localhost:9000</value>
  •   </property>
  •   </configuration>

hdfs-site.xml: This file contains the configuration setting for HDFS daemons. hdfs-site.xml also specifies default block replication and permission checking on HDFS.

  • <configuration>
  •   <property>
  •   <name>dfs.replication</name>
  •   <value>1</value>
  •   </property>
  •  </configuration>

mapred-site.xml: In this file, we specify a framework name for MapReduce. we can specify by setting the mapreduce.framework.name.

  •  <configuration>
  •   <property>
  •   <name>mapreduce.framework.name</name>
  •   <value>yarn</value>
  •   </property>
  •  </configuration>

yarn-site.xml: This file provides configuration settings for Node Manager and Resource Manager

  • <configuration>
  •   <property>
  •   <name>yarn.nodemanager.aux-services</name>
  •   <value>mapreduce_shuffle</value>
  •   </property>
  •   <property>
  •   <name>yarn.nodemanager.env-whitelist</name><value>  
  • JAVA_HOME,HADOOP_COMMON_HOME,HADOOP_HDFS_HOME,HADOOP_CONF_DIR,CLASSPATH_PREPEND_DISTCACHE,HADOOP_YARN_HOME,HADOOP_MAPRED_HOME</value>
  • </property>
  • </configuration>
Subscribe For Free Demo

Error: Contact form not found.

11. What are the limitations of Hadoop?

Ans:

Various limitations of Hadoop are:

Issue with small files: Hadoop is not suited for small files. Small files are the major problems in HDFS. A small file is significantly smaller than the HDFS block size (default 128MB). If you are storing these large numbers of small files, HDFS can’t handle these lots of files. HDFS works with a small number of large files for storing data sets rather than larger numbers of small files. If one uses a huge number of small files, then this will overload the namenode. Since namenode stores the namespace of HDFS.

HAR files, Sequence files, and Hbase overcome small files issues.

Processing Speed: With parallel and distributed algorithms, MapReduce processes large data sets. MapReduce performs the task: Map and Reduce. MapReduce requires a lot of time to perform these tasks thereby increasing latency. As data is distributed and processed over the cluster in MapReduce. So, it will increase the time and reduce processing speed.

Support only Batch Processing: Hadoop supports only batch processing. It does not process streamed data and hence, overall performance is slower. MapReduce framework does not leverage the memory of the cluster to the maximum.

Iterative Processing: Hadoop is not efficient for iterative processing. As hadoop does not support cyclic data flow. That is the chain of stages in which the input to the next stage is the output from the previous stage.

Vulnerable by nature: Hadoop is entirely written in Java, a language most widely used. Hence java has been most heavily exploited by cyber-criminal. Therefore it implicates in numerous security breaches.

Security: Hadoop can be challenging in managing the complex application. Hadoop is missing encryption at storage and network levels, which is a major point of concern. Hadoop supports Kerberos authentication, which is hard to manage.

12. Compare Hadoop 2 and Hadoop 3?

Ans:

Hadoop 2 Hadoop 3
In Hadoop 2, the minimum supported version of Java is Java 7 In Hadoop 3, it is Java 8
Hadoop 2, handles fault tolerance by replication (which is wastage of space) Hadoop 3 handles it by Erasure coding
For data balancing Hadoop 2 uses HDFS balancer For data balancing Hadoop 3 uses Intra-data node balancer
In Hadoop 2 some default ports are Linux ephemeral port range. So at the time of startup, they will fail to bind In Hadoop 3 these ports have been moved out of the ephemeral range
In hadoop 2, HDFS has 200% overhead in storage space Hadoop 3 has 50% overhead in storage space
Hadoop 2 has features to overcome SPOF (single point of failure). So whenever NameNode fails, it recovers automatically Hadoop 3 recovers SPOF automatically with no need of manual intervention to overcome it

13. Explain Data Locality in Hadoop?

Ans:

Hadoop major drawback was cross-switch network traffic due to the huge volume of data. To overcome this drawback. Data locality came into the picture. It refers to the ability to move the computation close to where the actual data resides on the node, instead of moving large data to computation. Data locality increases the overall throughput of the system.

In Hadoop, HDFS stores datasets. Datasets are divided into blocks and stored across the datanodes in the Hadoop Cluster. When a user runs the MapReduce job then NameNode sends this MapReduce code to the datanodes on which data is available related to MapReduce job.

Data locality has three categories:

  1. 1. Data local: In this category data is on the same node as the mapper working on the data. In such cases, the proximity of the data is closer to the computation. This is the most preferred scenario.
  2. 2. Intra -Rack: In this scenario mapper runs on the different nodes but on the same rack. As it is not always possible to execute the mapper on the same datanode due to constraints.
  3. 3. Inter-Rack: In these scenarios mapper runs on the different rack. As it is not possible to execute mapper on a different node in the same rack due to resource constraints.

14. What is Safe Mode in Hadoop?

Ans:

Safe mode in Apache Hadoop is a maintenance state of Name Node. During which NameNodedoesn’t allow any modifications to the file system. During Safe Mode, the HDFS cluster is read-only and doesn’t replicate or delete blocks. At the startup of Name Node:

  • It loads the file system namespace from the last saved FsImage into its main memory and the edited log file.
  • Merges edits log files on FsImage and results in a new file system namespace.
  • Then it receives block reports containing information about block location from all datanodes.

15. What is the problem with small files in Hadoop?

Ans:

 Hadoop is not suited for small data. Hadoop HDFS lacks the ability to support the random reading of small files. Small file in HDFS is smaller than the HDFS block size (default 128 MB). If we are storing these huge numbers of small files, HDFS can’t handle these lots of files. HDFS works with a small number of large files for storing large datasets. It is not suitable for a large number of small files. A large number of many small files overload NameNode since it stores the namespace of HDFS.

Solution:

HAR (Hadoop Archive) Files deal with small file issues. HAR has introduced a layer on top of HDFS, which provides an interface for file access. Using the Hadoop archive command we can create HAR files. This file runs a MapReduce job to pack the archived files into a smaller number of HDFS files. Reading through files in as HAR is not more efficient than reading through files in HDFS. Since each HAR file access requires two index files read as well the data file to read, this makes it slower.

Sequence Files also deal with small file problems. In this, we use the filename as key and the file contents as the value. If we have 10,000 files of 100 KB, we can write a program to put them into a single sequence file. And then we can process them in a streaming fashion.

16. What is a “Distributed Cache” in Apache Hadoop?

Ans:

 In Hadoop, data chunks process independently in parallel among DataNodes, using a program written by the user. If we want to access some files from all the DataNodes, then we will put that file to a distributed cache. MapReduce framework provides Distributed Cache to caches files needed by the applications. It can cache read-only text files, archives, jar files etc.

Once we have cached a file for our job. Then, Hadoop will make it available on each data node where map/reduce tasks are running. Then, we can access files from all the datanodes in our map and reduce jobs.

An application which needs to use distributed cache should make sure that the files are available on URLs. URLs can be either hdfs:// or http://. Now, if the file is present on the mentioned URLs. The user mentions it to be cache file to distributed cache. This framework will copy the cache file on all the nodes before starting tasks on those nodes. By default the size of the distributed cache is 10 GB. We can adjust the size of the distributed cache using local.cache.size.

17. How is security achieved in Hadoop?

Ans:

Apache Hadoop achieves security by using Kerberos.

At a high level, there are three steps that a client must take to access a service when using Kerberos. Thus, each of which involves a message exchange with a server.

Authentication: The client authenticates itself to the authentication server. Then, receives a timestamped Ticket-Granting Ticket (TGT).

Authorization: The client uses the TGT to request a service ticket from the Ticket Granting Server.

Service Request: The client uses the service ticket to authenticate itself to the server.

18. Why does one remove or add nodes in a Hadoop cluster frequently?

Ans:

 The most important features of the Hadoopis its utilization of Commodity hardware. However, this leads to frequent Datanode crashes in a Hadoop cluster. Another striking feature of Hadoop is the ease of scale by the rapid growth in data volume. Hence, due to above reasons, administrators Add/Remove DataNodes in a Hadoop Cluster.

19. What is throughput in Hadoop?

Ans:

The amount of work done in a unit time is Throughput. Because of bellow reasons HDFS provides good throughput:

The HDFS is Write Once and Read Many Models. It simplifies the data coherency issues as the data written once, one can not modify it. Thus, provides high throughput data access.

Hadoop works on the DATA Locality principle. This principle states that moves computation to data instead of data to computation. This reduces network congestion and therefore, enhances the overall system throughput.

20. How to restart NameNode or all the daemons in Hadoop?

Ans:

By following methods we can restart the NameNode:

  1. 1. You can stop the NameNode individually using /sbin/hadoop-daemon.sh stop namenode command. Then start the NameNode using /sbin/hadoop-daemon.sh start namenode.
  2. 2. Use /sbin/stop-all.sh and the use /sbin/start-all.sh, command which will stop all the demons first. Then start all the daemons.
  3. 3. The sbin directory inside the Hadoop directory stores these script files.

21. What does jps command do in Hadoop?

Ans:

The jbs command helps us to check if the Hadoop daemons are running or not. Thus, it shows all the Hadoop daemons that are running on the machine. Daemons are Namenode, Datanode, ResourceManager, NodeManager etc.

22. What are the main hdfs-site.xml properties?

Ans:

hdfs-site.xml: This file contains the configuration setting for HDFS daemons. hdfs-site.xml also specifies default block replication and permission checking on HDFS.

The three main hdfs-site.xml properties are:

  • dfs.name.dir gives you the location where NameNode stores the metadata (FsImage and edit logs). And also specify where DFS should locate – on the disk or in the remote directory.
  • dfs.data.dir gives the location of DataNodes where it stores the data.
  • fs.checkpoint.dir is the directory on the file system. On which secondary NameNode stores the temporary images of edit logs. Then EditLogs and FsImage will merge for backup.

23. What is fsck?

Ans:

fsck: Is the File System Check. Hadoop HDFS uses the fsck (filesystem check) command to check for various inconsistencies. It also reports the problems with the files in HDFS. For example, missing blocks for a file or under-replicated blocks. It is different from the traditional fsck utility for the native file system. Therefore it does not correct the errors it detects.

Normally NameNode automatically corrects most of the recoverable failures. Filesystem check also ignores open files. But it provides an option to select all files during reporting. The HDFS fsck command is not a Hadoop shell command. It can also run as bin/hdfs fsck. Filesystem check can run on the whole file system or on a subset of files.

Usage:

  1. 1. hdfs fsck<path>
  2. 2. [-list-corrupt file blocks]
  3. 3. [-move | -delete | -openforwrite]
  4. 4. [-files [-blocks [-locations | -racks]]]
  5. 5. [-includeSnapshots]
  6. 6. Path- Start checking from this path
  7. 7. -delete- Delete corrupted files.
  8. 8. -files- Print out the checked files.
  9. 9. -files –blocks- Print out the block report.
  10. 10. -files –blocks –locations- Print out locations for every block.
  11. 11. -files –blocks –rack- Print out network topology for data-node locations
  12. 12. -includeSnapshots- Include snapshot data if the given path indicates or include snapshottable directory.
  13. 13. -list -corruptfileblocks- Print the list of missing files and blocks they belong to.

24. How to debug Hadoop code?

Ans:

First, check the list of MapReduce jobs currently running. Then, check whether orphaned jobs are running or not; if yes, you need to determine the location of RM logs.

First of all, Run: “ps –ef| grep –I ResourceManager” and then, look for the log directory in the displayed result. Find out the job-id from the displayed list. Then check whether the error message is associated with that job or not.

Now, on the basis of RM logs, identify the worker node which involves in the execution of the task.

Now, login to that node and run- “ps –ef| grep –I NodeManager”

Examine the NodeManager log. The majority of errors come from user level logs for each map-reduce job.

25. Explain Hadoop streaming?

Ans:

Hadoop distribution provides generic application programming interface (API). This allows writing Map and Reduce jobs in any desired programming language. The utility allows creating/running jobs with any executable as Mapper/ Reducer. 

For example:

  • hadoop jar hadoop-streaming-3.0.jar \
  • -input myInout Dies \
  • -output myOutputDir \
  • -mapper /bin/cat \
  • -reducer /usr/bin/wc

In the example, both the Mapper and reducer are executables. That reads the input from stdin (line by line) and emits the output to stdout. The utility allows creating/submitting Map/Reduce jobs to an appropriate cluster. It also monitors the progress of the job until it completes. Hadoop Streaming uses both streaming command options as well as generic command options. Be sure to place the generic options before the streaming. Otherwise, the command will fail.

The general line syntax shown below:

  • Hadoop command [genericOptions] [streamingOptions]

26. What does hadoop-metrics.properties file do?

Ans:

Statistical information exposed by the Hadoop daemons is Metrics. Hadoop framework uses it for monitoring, performance tuning and debugging. By default, there are many metrics available. Thus, they are very useful for troubleshooting.

Hadoop framework uses hadoop-metrics.properties for ‘Performance Reporting’ purpose. It also controls the reporting for Hadoop. The API provides an abstraction so we can implement on top of a variety of metrics client libraries. The choice of client library is a configuration option. And different modules within the same application can use different metrics implementation libraries.

This file is present inside /etc/hadoop.

27. How Hadoop’s CLASSPATH plays a vital role in starting or stopping in Hadoop daemons?

Ans:

CLASSPATH includes all directories containing jar files required to start/stop Hadoop daemons.

For example: HADOOP_HOME/share/hadoop/common/lib contains all the utility jar files. We cannot start/ stop Hadoop daemons if we don’t set CLASSPATH.

We can set CLASSPATH inside /etc/hadoop/hadoop-env.sh file. The next time you run hadoop, the CLASSPATH will automatically add. That is, you don’t need to add CLASSPATH in the parameters each time you run it.

28. What are the different commands used to startup and shutdown Hadoop daemons?

Ans:

To start all the hadoop daemons use:

  • ./sbin/start-all.sh

Then, to stop all the Hadoop daemons use:

  • ./sbin/stop-all.sh

You can also start all the dfs daemons together using

  • ./sbin/start-dfs.sh

Yarn daemons together using

  • ./sbin/start-yarn.sh

MR Job history server using the following command to start the history srver.

  • /sbin/mr-jobhistory-daemon.sh

Then, to stop these daemons we can use

  • ./sbin/stop-dfs.sh
  • ./sbin/stop-yarn.sh
  • /sbin/mr-jobhistory-daemon.sh stop historyserver

Finally, the last way is to start all the daemons individually. Then, stop them individually:

  • ./sbin/hadoop-daemon.sh start namenode
  • ./sbin/hadoop-daemon.sh start datanode
  • ./sbin/yarn-daemon.sh start resourcemanager
  • ./sbin/yarn-daemon.sh start nodemanager
  • ./sbin/mr-jobhistory-daemon.sh start historyserver

29. What is configured in /etc/hosts and what is its role in setting a Hadoop cluster?

Ans:

/etc/hosts file contains the hostname and their IP address of that host. It also maps the IP address to the hostname. In hadoop cluster, we store all the hostnames (master and slaves) with their IP address in ./etc/hosts. So, we can use hostnames easily instead of IP addresses.

30. How is the splitting of files invoked in the Hadoop framework?

Ans:  

Input file store data for Hadoop MapReduce tasks, and these files typically reside in HDFS. InputFormat defines how these input files split and read. It is also responsible for creating InputSplit, which is the logical representation of data. InputFormat also splits into records. Then, mapper will process each record (which is a key-value pair). Hadoop framework invokes Splitting of the file by running getInputSplit() method. This method belongs to the InputFormat class (like FileInputFormat) defined by the user.

Course Curriculum

Get Big Data Hadoop Training from Top-Rated Instructors

  • Instructor-led Sessions
  • Real-life Case Studies
  • Assignments
Explore Curriculum

31. Is it possible to provide multiple input to Hadoop? If yes then how?

Ans:

Yes, it is possible by using Multiple Inputs class.

For example:

If we had weather data from the UK Met Office. And we want to combine with the NCDC data for our maximum temperature analysis. Then, we can set up the input as follows:

  • MultipleInputs.addInputPath(job,ncdcInputPath,TextInputFormat.class,MaxTemperatureMapper.class);
  • MultipleInputs.addInputPath(job,metofficeInputPath,TextInputFormat.class, MetofficeMaxTemperatureMapper.class);

The above code replaces the usual calls to FileInputFormat.addInputPath() and job.setmapperClass(). Both the Met Office and NCDC data are text based. So, we use TextInputFormat for each. And, we will use two different mappers, as the two data sources have different line formats. The MaxTemperatureMapperr reads NCDC input data and extracts the year and temperature fields. The MetofficeMaxTemperatureMappers reads Met Office input data. Then, extracts the year and temperature fields.

32. Is it possible to have hadoop job output in multiple directories? If yes, how?

Ans:

Yes, it is possible by using following approaches:

Using MultipleOutputs class:

This class simplifies writing output data to multiple outputs.

  • MultipleOutputs.addNamedOutput(job,”OutputFileName”,OutputFormatClass,keyClass,valueClass);

The API provides two overloaded write methods to achieve this

  • MultipleOutput.write(‘OutputFileName”, new Text (key), new Text(value));

Then, we need to use an overloaded write method, with an extra parameter for the base output path. This will allow me to write the output file to separate output directories.

  • MultipleOutput.write(‘OutputFileName”, new Text (key), new Text(value), baseOutputPath);

Then, we need to change your baseOutputpath in each of our implementations.

Rename/Move the file in driver class: This is the easiest hack to write output to multiple directories. So, we can use MultipleOutputs and write all the output files to a single directory. But the file names need to be different for each category.

We have categorized the above Hadoop Scenario based Interview Questions for Hadoop developers, Hadoop Administrators, Hadoop architect etc for freshers as well as for experienced candidates.

33. What is HDFS- Hadoop Distributed File System?

Ans:

Hadoop distributed file system (HDFS) is the primary storage system of Hadoop. HDFS stores very large files running on a cluster of commodity hardware. It works on the principle of storage of less number of large files rather than the huge number of small files. HDFS stores data reliably even in the case of hardware failure. It provides high throughput access to the application by accessing in parallel.

Components of HDFS:

  1. 1. NameNode: It is also known as Master node. Namenode stores meta-data i.e. number of blocks, their replicas and other details.
  2. 2. DataNode: It is also known as Slave. In Hadoop HDFS, DataNode is responsible for storing actual data. DataNode performs read and write operation as per request for the clients in HDFS.

34. Explain NameNode and DataNode in HDFS?

Ans:

NameNode: It is also known as Master node. Namenode stores meta-data i.e. number of blocks, their location, replicas and other details. This meta-data is available in memory in the master for faster retrieval of data. NameNode maintains and manages the slave nodes, and assigns tasks to them. It should be deployed on reliable hardware as it is the centerpiece of HDFS.

Task of NameNode:

  • Manage file system namespace.
  • Regulates client’s access to files.
  • In HDFS, NameNode also executes file system execution such as naming, closing, opening files and directories.

DataNode: It is also known as Slave. In Hadoop HDFS, DataNode is responsible for storing actual data in HDFS. DataNode performs read and write operations as per request for the clients. One can deploy the DataNode on commodity hardware.

Task of DataNode:

  • In HDFS, DataNode performs various operations like block replica creation, deletion, and replication according to the instruction of NameNode.
  • DataNode manages data storage of the system.

35. Why is block size set to 128 MB in Hadoop HDFS?

Ans:

Block is a continuous location on the hard drive which stores the data. In general, FileSystem stores data as a collection of blocks. HDFS stores each file as blocks, and distributes it across the Hadoop Cluster . In HDFS, the default size of the data block is 128 MB, which we can configure as per our requirement. Block size is set to 128 MB:

To reduce the disk seeks (IO). Larger the block size, lesser the file blocks and less number of disk seek and transfer of the block can be done within respectable limits and that too parallelly.

HDFS have huge data sets, i.e. terabytes and petabytes of data. If we take 4 KB block size for HDFS, just like Linux file system, which has 4 KB block size, then we would be having too many blocks and therefore too much metadata. Managing this huge number of blocks and metadata will create huge overhead and traffic which is something which we don’t want. So, the block size is set to 128 MB.

On the other hand, block size can’t be so large that the system is waiting a very long time for the last unit of data processing to finish its work.

36. How data or file is written into HDFS?

Ans:

When a client wants to write a file to HDFS, it communicates to the namenode for metadata. The Namenode responds with details of a number of blocks, replication factors. Then, on the basis of information from NameNode, clients split files into multiple blocks. After that client starts sending them to the first DataNode. The client sends block A to Datanode 1 with other two Data Nodes details.

When Datanode 1 receives block A sent from the client, Datanode 1 copies the same block to Datanode 2 of the same rack. As both the Datanodes are in the same rack so block transfer via rack switch. Now Datanode 2 copies the same block to Datanode 3. As both the Datanodes are in different racks so block transfer via an out-of-rack switch.

After the Datanode receives the blocks from the client. Then Datanode sends write confirmation to Namenode. Now Datanode sends write confirmation to the client. The Same process will repeat for each block of the file. Data transfer happens in parallel for faster write of blocks.

37. Can multiple clients write into an HDFS file concurrently?

Ans:

 Multiple clients cannot write into an HDFS file at same time. Apache Hadoop HDFS follows single writer multiple reader models. The client which opens a file for writing, the NameNode grants a lease. Now suppose, some other client wants to write into that file. It asks NameNode for the write operation. NameNode first checks whether it has granted the lease for writing into that file to someone else or not. When someone already acquires the lease, then, it will reject the write request of the other client.

38. How data or file is read in HDFS?

Ans:

To read from HDFS, the first client communicates to the namenode for metadata. A client comes out of the namenode with the name of files and its location. The Namenode responds with details of the number of blocks, replication factor. Now the client communicates with Datanode where the blocks are present. Clients start reading data parallel from the Datanode. It read on the basis of information received from the namenodes.

Once a client or application receives all the blocks of the file, it will combine these blocks to form a file. For read performance improvement, the location of each block ordered by their distance from the client. HDFS selects the replica which is closest to the client. This reduces the read latency and bandwidth consumption. It first read the block in the same node. Then another node in the same rack, and then finally another Datanode in another rack.

39. Why does HDFS store data using commodity hardware despite the higher chance of failures?

Ans:

HDFS stores data using commodity hardware because HDFS is highly fault-tolerant. HDFS provides fault tolerance by replicating the data blocks. And then distribute it among different DataNodes across the cluster. By default, replication factor is 3 which is configurable. Replication of data solves the problem of data loss in unfavorable conditions. And unfavorable conditions are crashing the node, hardware failure and so on. So, when any machine in the cluster goes down, then the client can easily access their data from another machine. And this machine contains the same copy of data blocks.

40. How is indexing done in HDFS?

Ans:

Hadoop has a unique way of indexing. Once Hadoop framework stores the data as per the block size. HDFS will keep on storing the last part of the data which will say where the next part of the data will be. In fact, this is the base of HDFS.

41. What is a Heartbeat in HDFS?

Ans:

Heartbeat is the signal that NameNode receives from the DataNodes to show that it is functioning (alive). NameNode and DataNode do communicate using Heartbeat. If after a certain time of heartbeat NameNode does not receive any response from DataNode, then that Node is dead. The NameNode then schedules the creation of new replicas of those blocks on other DataNodes.

Heartbeats from a Datanode also carry information about total storage capacity. Also, carry the fraction of storage in use, and the number of data transfers currently in progress. The default heartbeat interval is 3 seconds. One can change it by using dfs.heartbeat.interval in hdfs-site.xml.

42. How to copy a file into HDFS with a different block size to that of existing block size configuration?

Ans:

 One can copy a file into HDFS with a different block size by using, Ddfs.blocksize=block_size, where block_size is in bytes.

Example:

Suppose, you want to copy a file called test.txt of size, say of 128 MB, into the hdfs. And for this file, you want the block size to be 32MB (33554432 Bytes) in place of the default (128 MB). So, you would issue the following command:

Hadoopfs Fs –Dfs.block size=33554432 –copyFromlocal/home/dataflair/test.txt/sample_hdfs

Now, you can check the HDFS block size associated with this file by:

hadoop fs –stat %o/sample_hdfs/test.txt

Else, you can also use the NameNode web UI for seeing the HDFS directory.

43. Why does HDFS perform replication, although it results in data redundancy?

Ans:

  In HDFS, Replication provides the fault tolerance. Data replication is one of the most important and unique features of HDFS. Replication of data solves the problem of data loss in unfavorable conditions. Unfavorable conditions are crashing the node, hardware failure and so on. HDFS by default creates 3 replicas of each block across the cluster in Hadoop. And we can change it as per the need. So, if any node goes down, we can recover data on that node from the other node.

In HDFS, Replication will lead to the consumption of a lot of space. But the user can always add more nodes to the cluster if required. It is very rare to have free space issues in the practical cluster. The very first reason to deploy HDFS was to store huge data sets. Also, one can change the replication factor to save HDFS space. Or one can also use different codec provided by the Hadoop to compress the data.

44. What is the default replication factor and how will you change it?

Ans:

The default replication factor is 3. One can change this in following three ways:

By adding this property to hdfs-site.xml:

  • <property>
  • <name>dfs.replication</name>
  • <value>5</value>
  • <description>Block Replication</description>
  • </property>

 You can also change the replication factor on per-file basis using the command:

  • hadoop fs –setrep –w 3 / file_location

      You can also change replication factor for all the files in a directory by using:

  • hadoop fs –setrep –w 3 –R / directoey_location

45. Explain Hadoop Archives?

Ans:

Apache Hadoop HDFS stores and processes large (terabytes) data sets. However, storing a large number of small files in HDFS is inefficient, since each file is stored in a block, and block metadata is held in memory by the namenode.

Reading through small files normally causes lots of seeks and lots of hopping from datanode to datanode to retrieve each small file, all of which is inefficient data access pattern.

Hadoop Archive (HAR) basically deals with small files issues. HAR packs a number of small files into a large file, so one can access the original files in parallel transparently (without expanding the files) and efficiently.

Hadoop Archives are special format archives. It maps to a file system directory. Hadoop Archive always has a *.har extension. In particular, HadoopMapReduce uses Hadoop Archives as an Input.

46. What do you mean by the High Availability of a NameNode in Hadoop HDFS?

Ans:

In Hadoop 1.0, NameNode is a single point of Failure (SPOF), if namenode fails, all clients including MapReduce jobs would be unable to read, write file or list files. In such an event, the whole Hadoop system would be out of service until a new namenode is brought online.

Hadoop 2.0 overcomes this single point of failure by providing support for multiple NameNode. High Availability feature provides an extra NameNode (active standby NameNode) to Hadoop architecture which is configured for automatic failover. If Active NameNode fails, then Standby Namenode takes all the responsibility of the active node and the cluster continues to work.

The initial implementation of HDFS namenode high availability provided for single active namenode and single standby namenode. However, some deployment requires high degree fault-tolerance, this is enabled by new version 3.0, which allows the user to run multiple standby namenode. For instance configuring three namenode and five journal nodes, the cluster is able

47. What is Fault Tolerance in HDFS?

Ans:

Fault-tolerance in HDFS is the working strength of a system in unfavorable conditions ( like the crashing of the node, hardware failure and so on). HDFS control faults by the process of replica creation. When a client stores a file in HDFS, then the file is divided into blocks and blocks of data are distributed across different machines present in the HDFS cluster. And, It creates a replica of each block on other machines present in the cluster. HDFS, by default, creates 3 copies of a block on other machines present in the cluster. If any machine in the cluster goes down or fails due to unfavorable conditions, then also, the user can easily access that data from other machines in the cluster in which the replica of the block is present.

48. What is Rack Awareness?

Ans:

Rack Awareness improves the network traffic while reading/writing files. In which NameNode chooses the DataNode which is closer to the same rack or nearby rack. NameNode achieves rack information by maintaining the rack IDs of each DataNode. This concept chooses Data Nodes based on the rack information. In HDFS, NameNode makes sure that all the replicas are not stored on the same rack or single rack. It follows the Rack Awareness Algorithm to reduce latency as well as fault tolerance.

Default replication factor is 3, according to the Rack Awareness Algorithm. Therefore, the first replica of the block will store on a local rack. The next replica will store on another datanode within the same rack. And the third replica is stored on a different rack.

In Hadoop, we need Rack Awareness because it improves:

  1. 1. Data high availability and reliability.
  2. 2. The performance of the cluster.
  3. 3. Network bandwidth.

49. Explain the Single point of Failure in Hadoop?

Ans:

In Hadoop 1.0, NameNode is a single point of Failure (SPOF). If namenode fails, all clients would be unable to read/write files. In such an event, the whole Hadoop system would be out of service until the new namenode is up.

Hadoop 2.0 overcomes this SPOF by providing support for multiple NameNode. High availability feature provides an extra NameNode to Hadoop architecture. This feature provides automatic failover. If the active NameNode fails, then Standby-Namenode takes all the responsibility of the active node. And the cluster continues to work.

The initial implementation of Namenode high availability provided for single active/standby namenode. However, some deployment requires high degree fault-tolerance. So version 3.0 enables this feature by allowing the user to run multiple standby namenode.For instance configuring three namenode and five journal nodes. So, the cluster is able to tolerate the failure of two nodes rather than one.

50. Explain Erasure Coding in Hadoop?

Ans:

 In Hadoop, by default HDFS replicates each block three times for several purposes. Replication in HDFS is a very simple and robust form of redundancy to shield against the failure of a datanode. But replication is very expensive. Thus, the 3 x replication scheme has 200% overhead in storage space and other resources.

Thus, Hadoop 2.x introduced Erasure Coding, a new feature to use in the place of Replication. It also provides the same level of fault tolerance with less space store and 50% storage overhead.

Erasure Coding uses Redundant Array of Inexpensive Disk (RAID). RAID implements EC through striping. In which it divides logical sequential data (such as a file) into the smaller unit (such as bit, byte or block). Then, stores data on different disks.

Encoding: In this process, RAID calculates and sort Parity cells for each strip of data cells. And recover error through the parity. Erasure coding extends a message with redundant data for fault tolerance. EC codec operates on uniformly sized data cells. In Erasure Coding, codec takes a number of data cells as input and produces parity cells as the output. Data cells and parity cells together are called an erasure coding group.

There are two algorithms available for Erasure Coding:

  • XOR Algorithm
  • Reed-Solomon Algorithm
Course Curriculum

Enroll in Big Data Hadoop Certification Course Led By Industry Experts

Weekday / Weekend BatchesSee Batch Details

51. What is Disk Balancer in Hadoop?

Ans:

 HDFS provides a command line tool called Disk balancer. It distributes data evenly on all disks of a datanode. This tool operates against a given data node and moves blocks from one disk to another.

Disk balancer works by creating a plan (set of statements) and executing that plan on the datanode. Thus, the plan describes how much data should move between two disks. A plan composes multiple steps. Move step has source disk, destination disk and the number of bytes to move. And the plan will execute against an operational datanode.

By default, disk balancer is not enabled; Hence, to enable disk balancer hdfs.disk.balancer.enabled must be set true in hdfs-site.xml.

When we write a new block in hdfs, then, the datanode uses volume choosing the policy to choose the disk for the block. Each directory is the volume in hdfs terminology. Thus, two such policies are:

  1. 1. Round-robin: It distributes the new blocks evenly across the available disks.
  2. 2. Available space: It writes data to the disk that has maximum free space (by percentage).

52. How would you check whether your NameNode is working or not?

Ans:

 There are several ways to check the status of the NameNode. Mostly, one uses the jps command to check the status of all daemons running in the HDFS.

53. Is the Namenode machine the same as a DataNode machine as in terms of hardware?

Ans:

Unlike the DataNodes, a NameNode is a highly available server. That manages the File System Namespace and maintains the metadata information. Metadata information is a number of blocks, their location, replicas and other details. It also executes file system execution such as naming, closing, opening files/directories.

Therefore, NameNode requires higher RAM for storing the metadata for millions of files. Whereas, DataNode is responsible for storing actual data in HDFS. It performs read and write operations as per request of the clients. Therefore, Datanode needs to have a higher disk capacity for storing huge data sets.

54. What are file permissions in HDFS and how HDFS check permissions for files or directory?

Ans:

For files and directories, Hadoop distributed file system (HDFS) implements a permissions model. For each file or directory, thus, we can manage permissions for a set of 3 distinct user classes:

The owner, group, and others.

The 3 different permissions for each user class: Read (r), write (w), and execute(x).

For files, the r permission is to read the file, and the w permission is to write to the file.

For directories, the r permission is to list the contents of the directory. The w permission is to create or delete the directory.

X permission is to access a child of the directory.

HDFS check permissions for files or directory:

  1. 1. We can also check the owner’s permissions if the username matches the owner of the directory.
  2. 2. If the group matches the directory’s group, then Hadoop tests the user’s group permissions.
  3. 3. Hadoop tests the “other” permission when the owner and the group names don’t match.
  4. 4. If none of the permissions checks succeed, the client’s request is denied.

55. If DataNode increases, then do we need to upgrade NameNode?

Ans:

Namenode stores meta-data i.e. number of blocks, their location, replicas. This meta-data is available in memory in the master for faster retrieval of data. NameNode maintains and manages the slave nodes, and assigns tasks to them. It regulates client’s access to files.

It also executes file system execution such as naming, closing, opening files/directories.

The Hadoop Installation framework determines NameNode based on the size of the cluster. Mostly we don’t need to upgrade the NameNode because it does not store the actual data. But it stores the metadata, so such requirements rarely arise.

These Big Data Hadoop interview questions are the selected ones which are asked frequently and by going through these HDFS interview questions you will be able to answer many other related answers in your interview.

56. What is Hadoop MapReduce?

Ans:

MapReduce is the data processing layer of Hadoop. It is the framework for writing applications that process the vast amount of data stored in the HDFS. It processes a huge amount of data in parallel by dividing the job into a set of independent tasks (sub-job). In Hadoop, MapReduce works by breaking the processing into phases: Map and Reduce.

Map: It is the first phase of processing. In which we specify all the complex logic/business rules/costly code. The map takes a set of data and converts it into another set of data. It also breaks individual elements into tuples (key-value pairs).

Reduce: It is the second phase of processing. In which we specify light-weight processing like aggregation/summation. Reduce takes the output from the map as input. After that, it combines tuples (key-value) based on the key. And then, modifies the value of the key accordingly.

57. Why Hadoop MapReduce?

Ans:

Transferring all this data to a central node for processing is not going to work. And we will have to wait forever for the data to transfer over the network. Google faced this same problem with its Distributed Goggle File System (GFS). It solved this problem using a MapReduce data processing model.

Challenges before MapReduce:

  1. 1. Costly: All the data (terabytes) in one server or as a database cluster which is very expensive. And also hard to manage.
  2. 2. Time-consuming: By using a single machine we cannot analyze the data (terabytes) as it will take a lot of time.

MapReduce overcome these challenges:

  1. 1. Cost-efficient: It distributes the data over multiple low config machines.
  2. 2. Time-efficient: If we want to analyze the data. We can write the analysis code in the Map function. And the integration code in the Reduce function and execute it. Thus, this MapReduce code will go to every machine which has a part of our data and executes on that specific part. Hence instead of moving terabytes of data, we just move kilobytes of code. So this type of movement is time-efficient. 

58. What is the key- value pair in MapReduce?

Ans:

HadoopMapReduce implements a data model, which represents data as key-value pairs. Both input and output to MapReduce Framework should be in Key-value pairs only.

In Hadoop, if the schema is static we can directly work on the column instead of key-value. But, the schema is not static. We will work on keys and values. Keys and values are not the intrinsic properties of the data. But the user analyzing the data chooses a key-value pair. A Key-value pair in HadoopMapReduce generate in following way:

InputSplit: It is the logical representation of data. InputSplit represents the data which an individual Mapper will process.

RecordReader: It communicates with the InputSplit (created by InputFormat). And converts the split into records. Records are in the form of Key-value pairs that are suitable for reading by the mapper. By Default RecordReader uses TextInputFormat for converting data into a key-value pair.

Key: It is the byte offset of the beginning of the line within the file, so it will be unique if combined with the file.

Value: It is the contents of the line, excluding line terminators. For Example file content is- on the top of the crumpet Tree

Key- 0

Value- on the top of the crumpetty Tree

59. Why does MapReduce use the key-value pair to process the data?

Ans:

 MapReduce works on unstructured and semi-structured data apart from structured data. One can read the Structured data like the ones stored in RDBMS by columns. But handling unstructured data is feasible using key-value pairs. And the very core idea of MapReduce works on the basis of these pairs. Framework map data into a collection of key-value pairs by mapper and reducer on all the pairs with the same key. So as stated by Google themselves in their research publication. In most of the computations-

Map operation applies on each logical “record” in our input. This computes a set of intermediate key-value pairs. Then apply reduce operation on all the values that share the same key. This combines the derived data properly.

In conclusion, we can say that key-value pairs are the best solution to work on data problems on MapReduce.

60. How many Mappers run for a MapReduce job in Hadoop?

Ans:

Mapper task processes each input record and generates a key-value pair. The number of mappers depends on 2 factors:

  • The amount of data we want to process along with block size. It depends on the number of InputSplit. If we have the block size of 128 MB and we expect 10TB of input data, thus we will have 82,000 maps. Ultimately InputFormat determines the number of maps.
  • The configuration of the slave i.e. number of core and RAM available on the slave. The right number of map/nodes can be between 10-100. Hadoop framework should give 1 to 1.5 cores of the processor to each mapper. Thus, for a 15 core processor, 10 mappers can run.

In a MapReduce job, by changing the block size one can control the number of Mappers. Hence, by Changing block size the number of InputSplit increases or decreases.

By using JobConf’s conf.setNumMapTasks(intnum) one can increase the number of map tasks manually.

Mapper= {(total data size)/ (input split size)}

If data size= 1 Tb and input split size= 100 MB

Hence, Mapper= (1000*1000)/100= 10,000

61. How many Reducers run for a MapReduce job in Hadoop?

Ans:

Reducer takes a set of an intermediate key-value pair produced by the mapper as the input. Then runs a reduce function on each of them to generate the output. Thus, the output of the reducer is the final output, which it stores in HDFS. Usually, in the reducer, we do aggregation or summation sort of computation.

With the help of Job.setNumreduceTasks(int) the user set the number of reducers for the job. Hence the right number of reducers are set by the formula:

0.95 Or 1.75 multiplied by (<no. of nodes> * <no. of the maximum container per node>).

With 0.95, all the reducers can launch immediately and start transferring map outputs as the map finishes.

With 1.75, faster nodes finish the first round of reductions and then launch the second wave of reduces.

By increasing the number of reducers:

  1. 1. Framework overhead increases
  2. 2. Increases load balancing
  3. 3. Lowers the cost of failures

62. What is the difference between Reducer and Combiner in HadoopMapReduce?

Ans:

 The Combiner is a Mini-Reducer that performs local reduce tasks. The Combiner runs on the Map output and produces the output to reducer input. A combiner is usually used for network optimization. Reducer takes a set of an intermediate key-value pair produced by the mapper as the input. Then runs a reduce function on each of them to generate the output. An output of the reducer is the final output.

  • Unlike a reducer, the combiner has a limitation. i.e. the input or output key and value types must match the output types of the mapper.
  • Combiners can operate only on a subset of keys and values. i.e. combiners can execute on functions that are commutative.
  • Combiner functions take input from a single mapper. While reducers can take data from multiple mappers as a result of partitioning. 

63. What happens if the number of reducers is 0 in Hadoop?

Ans:

 If we set the number of reducers to 0, then no reducer will execute and no aggregation will take place. In such a case, we will prefer a “Map-only job” in Hadoop. In a map-Only job, the map does all tasks with its InputSplit and the reducer does no job. Map output is the final output.

Between map and reduce phases there is key, sort, and shuffle phase. Sort and shuffle phase are responsible for sorting the keys in ascending order. Then grouping values based on the same keys. This phase is very expensive. If a reduced phase is not required we should avoid it. Avoiding the reduced phase would eliminate sort and shuffle phase as well. This also saves network congestion. As in shuffling an output of a mapper travels to the reducer, when data size is huge, large data travel to the reducer.

64. What do you mean by shuffling and sorting in MapReduce?

Ans:

Shuffling and Sorting takes place after the completion of a map task. Shuffle and sort phase in hadoop occurs simultaneously.

Shuffling: It is the process of transferring data from the mapper to reducer. i.e., the process by which the system sorts the key-value output of the map tasks and transfer it to the reducer. So, the shuffle phase is necessary for the reducer, otherwise, they would not have any input. As shuffling can start even before the map phase has finished. So this saves some time and completes the task in less time.

Sorting: Mapper generates the intermediate key-value pair. Before starting the reducer, MapReduceframework sorts these key-value pairs by the keys. Sorting helps reducers to easily distinguish when a new reduced task should start. Thus saves time for the reducer. Shuffling and sorting are not performed at all if you specify zero reducers (setNumReduceTasks(0)).

65. What is the fundamental difference between a MapReduceInputSplit and HDFS block?

Ans:

Fundamentals Block InputSplit
Definition Block is the continuous location on the hard drive where HDFS stores data. In general, File System stores data as a collection of blocks. In a similar way, HDFS stores each file as blocks, and distributes it across the Hadooper cluster Input Split represents the data which an individual Mapper will process. Further split divides into records. Each record (which is a key-value pair) will be processed by the map
Data representation It is the physical representation of data It is the logical representation of data. Thus, during data processing in MapReduce program or other processing techniques use InputSplit. In MapReduce, an important thing is that InputSplit does not contain the input data. Hence, it is just a reference to the data
Size The default size of the HDFS block is 128 MB which is configured as per our requirement. All blocks of the file are of the same size except the last block. The last Block can be of the same size or smaller. In Hadoop, the files split into 128 MB blocks and then stored into HadoopFilesystem Split size is approximately equal to block size, by default

Example

Consider an example, where we need to store the file in HDFS. HDFS stores files as blocks. Block is the smallest unit of data that can store or retrieve from the disk. The default size of the block is 128MB. HDFS breaks files into blocks and stores these blocks on different nodes in the cluster. We have a file of 130 MB, so HDFS will break this file into 2 blocks.

Now, if we want to perform MapReduce operation on the blocks, it will not process, as the 2nd block is incomplete. InputSplit solves this problem. InputSplit will form a logical grouping of blocks as a single block. As the InputSplit includes a location for the next block. It also includes the byte offset of the data needed to complete the block.

From this, we can conclude that InputSplit is only a logical chunk of data. i.e. it has just the information about blocks address or location. Thus, during MapReduce execution, Hadoop scans through the blocks and creates InputSplits. Split acts as a broker between block and mapper.

66. What is a Speculative Execution in HadoopMapReduce?

Ans:

MapReduce breaks jobs into tasks and these tasks run parallel rather than sequentially. Thus reduces overall execution time. This model of execution is sensitive to slow tasks as they slow down the overall execution of a job. There are various reasons for the slowdown of tasks like hardware degradation. But it may be difficult to detect causes since the tasks still complete successfully. Although it takes more time than the expected time.

Apache Hadoop doesn’t try to diagnose and fix slow running tasks. Instead, it tries to detect them and run backup tasks for them. This is called Speculative execution in Hadoop. These backup tasks are called Speculative tasks in hadoop. First of all Hadoop framework launches all the tasks for the job in Hadoop MapReduce. Then it launches speculative tasks for those tasks that have been running for some time (one minute). And the task that has not made any much progress, on average, as compared with other tasks from the job. If the original task completes before the speculative task. Then it will kill the speculative task. On the other hand, it will kill the original task if the speculative task finishes before it.

67. How to submit extra files(jars, static files) for a MapReduce job during runtime?

Ans:

Framework provides Distributed Cache to caches files needed by the applications. It can cache read-only text files, archives, jar files etc.

First of all, an application which needs to use distributed cache to distribute a file should make sure that the files are available on URLs. Hence, URLs can be either hdfs:// or http://. Now, if the file is present on the hdfs:// or http://urls. Then, the user mentions it to be a cache file to distribute. This framework will copy the cache file on all the nodes before starting tasks on those nodes. The files are only copied once per job. Applications should not modify those files.

By default the size of the distributed cache is 10 GB. We can adjust the size of the distributed cache using local.cache.size.

To separate the above Interview Questions for freshers and experienced candidates, we have categorized the above MapreduceHadoop Interview Questions for freshers and experienced them in the following manner.

68. What is a job tracker?

Ans:

 Job tracker is a daemon that runs on a namenode for submitting and tracking MapReduce jobs in Hadoop. It assigns the tasks to the different task trackers. In a Hadoop cluster, there will be only one job tracker but many task trackers. It is the single point of failure for Hadoop and MapReduce Service. If the job tracker goes down all the running jobs are halted. It receives a heartbeat from the task tracker based on which Job tracker decides whether the assigned task is completed or not.

69. Name the most common input formats in Hadoop?

Ans:

There are three common input formats in Hadoop:

Text Input Format: This is the default input format in Hadoop.

Sequence File Input Format: This input format is used for reading files in sequence.

Key Value Input Format: This one is used to read plain text files. 

70. What is YARN?

Ans:

YARN is the abbreviation of Yet Another Resource Negotiator. It is Hadoop’s data processing framework that manages data resources and creates an environment for successful processing.

Hadoop Sample Resumes! Download & Edit, Get Noticed by Top Employers! Download

71. What is the role of a JobTracker in Hadoop?

Ans:

 A JobTracker’s primary function is resource management (managing the TaskTrackers), tracking resource availability, and task life cycle management (tracking the tasks’ progress and fault tolerance).

  1. 1. It is a process that runs on a separate node, often not on a DataNode.
  2. 2. The JobTracker communicates with the NameNode to identify data location.
  3. 3. It finds the best TaskTracker nodes to execute the tasks on the given nodes.
  4. 4. It monitors individual TaskTrackers and submits the overall job back to the client.
  5. 5. It tracks the execution of MapReduce workloads local to the slave node.

72. What are Active and Passive NameNodes?

Ans:

A high-availability Hadoop system usually contains two NameNodes – Active NameNode and Passive NameNode.

The NameNode that runs the Hadoop cluster is called the Active NameNode and the standby NameNode that stores the data of the Active NameNode is the Passive NameNode. The purpose of having two NameNodes is that if the Active NameNode crashes, the Passive NameNode can take the lead. Thus, the NameNode is always running in the cluster, and the system never fails.

73. What are the different schedulers in the Hadoop framework?

Ans:

There are three different schedulers in Hadoop framework:

  • COSHH: COSHH helps schedule decisions by reviewing the cluster and workload combined with heterogeneity.
  • FIFO Scheduler: FIFO lines up jobs in a queue based on their time of arrival, without using heterogeneity.
  • Fair Sharing: Fair Sharing creates a pool for individual users containing multiple maps and reduced slots on a resource that they can use to execute specific jobs.

74. What is Speculative Execution?

Ans:

Often in a Hadoop framework, some nodes may run slower than the rest. This tends to constrain the entire program. To overcome this, Hadoop first detects or ‘speculates’ when a task is running slower than usual, and then it launches an equivalent backup for that task. So, in the process, the master node executes both the tasks simultaneously and whichever is completed first is accepted while the other one is killed. This backup feature of Hadoop is known as Speculative Execution. 

75. Name the main components of Apache HBase?

Ans:

 Apache HBase is comprised of three components:

Region Server: After a table is divided into multiple regions, clusters of these regions are forwarded to the clients via the Region Server.

HMaster: This is a tool that helps manage and coordinate the Region server.

ZooKeeper: ZooKeeper is a coordinator within the HBase distributed environment. It helps maintain a server state inside the cluster through communication in sessions.

76. What is “Checkpointing”? What is its benefit?

Ans:

Checkpointing refers to the procedure by which aFsImage and Edit log are combined to form a new FsImage. Thus, instead of replaying the edit log, the NameNode can directly load the final in-memory state from the FsImage. The secondary NameNode is responsible for this process.

The benefit that Checkpointing offers is that it minimizes the startup time of the NameNode, thereby making the entire process more efficient.

77. Define DataNode. How does NameNode tackle DataNode failures?

Ans:

DataNode stores data in HDFS; it is a node where actual data resides in the file system. Each DataNode sends a heartbeat message to notify that it is alive. If the NameNode does not receive a message from the DataNode for 10 minutes, the NameNode considers the DataNode to be dead or out of place and starts the replication of blocks that were hosted on that DataNode such that they are hosted on some other DataNode. A BlockReport contains a list of the all blocks on a DataNode. Now, the system starts to replicate what was stored in the dead DataNode.

The NameNode manages the replication of the data blocks from one DataNode to another. In this process, the replication data gets transferred directly between DataNodes such that the data never passes the NameNode.

78. What are the vital Hadoop tools that can enhance the performance of Big Data?

Ans:

The Hadoop tools that boost Big Data performance significantly are:

  1. 1. Hive
  2. 2. HDFS
  3. 3. HBase
  4. 4. SQL
  5. 5. NoSQL
  6. 6. Oozie
  7. 7. Clouds
  8. 8. Avro
  9. 9. Flume
  10. 10. ZooKeeper 

79. What does ‘jps’ command do?

Ans:

It gives the status of the demons which run the Hadoop cluster. It gives the output mentioning the status of namenode, datanode , secondary namenode, Jobtracker and Task tracker.

80. How to restart Namenode?

Ans:

Step-1: Click on stop-all.sh and then click on start-all.sh

OR

Step-2 : Write sudo hdfs (press enter), su-hdfs (press enter), /etc/init.d/ha (press enter) and then /etc/init.d/hadoop-0.20-namenode start (press enter).

81. What does /etc /init.d do?

Ans:

/etc /init.d specifies where daemons (services) are placed or to see the status of these daemons. It is very LINUX specific, and has nothing to do with Hadoop.

82. What is a task tracker?

Ans:

Task tracker is also a daemon that runs on datanodes. Task Trackers manage the execution of individual tasks on slave nodes. When a client submits a job, the job tracker will initialize the job and divide the work and assign them to different task trackers to perform MapReduce tasks. While performing this action, the task tracker will be simultaneously communicating with the job tracker by sending a heartbeat. If the job tracker does not receive a heartbeat from task tracker within specified time, then it will assume that task tracker has crashed and assign that task to another task tracker in the cluster.

83. What are the real-time industry applications of Hadoop?

Ans:

Hadoop, well known as Apache Hadoop, is an open-source software platform for scalable and distributed computing of large volumes of data. It provides rapid, high performance, and cost-effective analysis of structured and unstructured data generated on digital platforms and within the enterprise. It is used in almost all departments and sectors today.

Here are some of the instances where Hadoop is used:

  1. 1. Managing traffic on streets
  2. 2. Streaming processing
  3. 3. Content management and archiving emails
  4. 4. Processing rat brain neuronal signals using a Hadoop computing cluster
  5. 5. Fraud detection and prevention
  6. 6. Advertisements targeting platforms are using Hadoop to capture and analyze clickstream, transaction, video, and social media data
  7. 7. Managing content, posts, images, and videos on social media platforms
  8. 8. Analyzing customer data in real time for improving business performance
  9. 9. Public sector fields such as intelligence, defense, cyber security, and scientific research
  10. 10. Getting access to unstructured data such as output from medical devices, doctor’s notes, lab results, imaging reports, medical correspondence, clinical data, and financial data

84. What is a ‘block’ in HDFS?

Ans:

 A ‘block’ is the minimum amount of data that can be read or written. In HDFS, the default block size is 64 MB as contrast to the block size of 8192 bytes in Unix/Linux. Files in HDFS are broken down into block-sized chunks, which are stored as independent units. HDFS blocks are large as compared to disk blocks, particularly to minimize the cost of seeks. If a particular file is 50 mb, will the HDFS block still consume 64 mb as the default size? No, not at all! 64 mb is just a unit where the data will be stored. In this particular situation, only 50 mb will be consumed by an HDFS block and 14 mb will be free to store something else. It is the MasterNode that does data allocation in an efficient manner.

85. What if a Namenode has no data?

Ans:

 It cannot be part of the Hadoop cluster.

86. What happens to job trackers when Namenode is down?

Ans:

 When Namenode is down, your cluster is OFF, this is because Namenode is the single point of failure in HDFS.

87. What is Big Data?

Ans:

Big Data is nothing but an assortment of such huge and complex data that it becomes very tedious to capture, store, process, retrieve and analyze it with the help of on-hand database management tools or traditional data processing techniques.

88. What are three characteristics of Big Data?

Ans:

The three characteristics of Big Data are :

Volume: Facebook generating 500+ terabytes of data per day.

Velocity: Analyzing 2 million records each day to identify the reason for losses.

Variety: images, audio, video, sensor data, log files, etc.  Veracity: biases, noise and abnormality in data

89. How is analysis of Big Data useful for organizations?

Ans:

Effective analysis of Big Data provides a lot of business advantage as organizations will learn which areas to focus on and which areas are less important. Big data analysis provides some early key indicators that can prevent the company from a huge loss or help in grasping a great opportunity with open hands! A precise analysis of Big Data helps in decision making! For instance, nowadays people rely so much on Facebook and Twitter before buying any product or service. All thanks to the Big Data explosion.

90. What is the use of RecordReader in Hadoop?

Ans:

Though Input Split defines a slice of work, it does not describe how to access it. Here is where the Record Reader class comes into the picture, which takes the byte-oriented data from its source and converts it into record-oriented key–value pairs such that it is fit for the Mapper task to read it. Meanwhile, Input Format defines this Hadoop Record Reader instance.

91. What is a Namenode?

Ans:

Namenode is the master node on which job tracker runs and consists of the metadata. It maintains and manages the blocks which are present on the datanodes. It is a high-availability machine and single point of failure in HDFS.

92. Why do we use HDFS for applications having large data sets and not when there are a lot of small files?

Ans:

HDFS is more suitable for large amounts of data sets in a single file as compared to small amounts of data spread across multiple files. This is because Namenode is a very expensive high performance system, so it is not prudent to occupy the space in the Namenode by an unnecessary amount of metadata that is generated for multiple small files. So, when there is a large amount of data in a single file, the name node will occupy less space. Hence for getting optimized performance, HDFS supports large data sets instead of multiple small files.

Are you looking training with Right Jobs?

Contact Us

Popular Courses