Top Answers to HDFS Interview Questions

1. Compare HDFS & HBase

Criteria HDFS HBase
Data write process Append method Bulk incremental, random write
Data read process Table scan Table scan/random read/small range scan
Hive SQL querying Excellent Average

2. What is Hadoop ?

Check out this video on Hadoop Tutorial for Beginners:

Youtube subscribe

3. Who is the provider of Hadoop?

Hadoop forms part of Apache project provided by Apache Software Foundation.

4. What is the use of Hadoop?

With Hadoop the user can run applications on the systems that have thousands of nodes spreading through innumerable terabytes. Rapid data processing and transfer among nodes helps uninterrupted operation even when a node fails preventing system failure.

Prepare yourself for the interview with our free material on Hadoop Interview Questions and Answers

5. What are the operating systems on which Hadoop works?

Windows and Linux are the preferred operating system though Hadoop can work on OS x and BSD.

6. What is meant by Big Data?

Big Data refers to assortment of huge amount of data which is difficult capturing, storing, processing or reprieving. Traditional database management tools cannot handle them but Hadoop can.

Get 100% Hike!

Master Most in Demand Skills Now !

7. Can you indicate Big Data examples?

Facebook alone generates more than 500 terabytes of data daily whereas many other organizations like Jet Air and Stock Exchange Market generates 1+ terabytes of data every hour. These are Big Data.

Learn all about HDFS and get ahead in your career with this comprehensive Hadoop Online Course.

8. What are major characteristics of Big Data?

The three characteristics of Big Data are volume, velocity, and veracity. Earlier it was assessed in megabytes and gigabytes but now the assessment is made in terabytes.

9. What is the use of Big Data Analysis for an enterprise?

Analysis of Big Data identifies the problem and focus points in an enterprise. It can prevent big losses and make profits helping the entrepreneurs take informed decision.

10. What are the characteristics of data scientists?

Data scientists analyze data and provide solutions for business problems. They are gradually replacing business and data analysts.

11. What are the basic characteristics of Hadoop?

Written in Java, Hadoop framework has the capability of solving issues involving Big Data analysis. Its programming model is based on Google MapReduce and infrastructure is based on Google’s Big Data and distributed file systems. Hadoop is scalable and more nodes can be added to it.

12. Which are the major players on the web that uses Hadoop?

Introduce in 2002 by Doug Cutting, Hadoop was used in Google MapReduce and HDFS project in 2004 and 2006. Yahoo and Facebook adopted it in 2008 and 2009 respectively. Major commercial enterprises using Hadoop include EMC, Hortonworks, Cloudera, MaOR, Twitter, EBay, and Amazon among others.

Want to know about the most sought-after Hadoop job roles and responsibilities?

13. How is Hadoop different from traditional RDBMS?

RDBMS can be useful for single files and short data whereas Hadoop is useful for handling Big Data in one shot.

14. What are the main components of Hadoop?

Main components of Hadoop are HDFS used to store large databases and MapReduce used to analyze them.

Certification in Bigdata Analytics

15. What is HDFS?

HDFS is filing system use to store large data files. It handles streaming data and running clusters on the commodity hardware.

16. What are the main features of HDFS?

Great fault tolerance, high throughput, suitability for handling large data sets, and streaming access to file system data are the main features of HDFS. It can be built with commodity hardware.

17. Why replication is pursued in HDFS though it may cause data redundancy?

Systems with average configuration are vulnerable to crash at any time. HDFS replicates and stores data at three different locations that makes the system highly fault tolerant. If data at one location becomes corrupt and is inaccessible it can be retrieved from another location.

This insightful Cloudera article shows the steps for running HDFS on a cluster.

18. Would the calculations made on one node be replicated to others in HDFS?

No! The calculation would be made on the original node only. In case the node fails then only the master node would replicate the calculation on to a second node.

19. What is meant by streaming access?

HDFS works on the principle of “write once, read many” and the focus is on fast and accurate data retrieval. Steaming access refers to reading the complete data instead of retrieving single record from the database.

20. What is meant by ‘commodity hardware’? Can Hadoop work on them?

Average and non-expensive systems are known as commodity hardware and Hadoop installation is performed on any of them. Hadoop does not require high-end hardware to function.

21. Which one is the master node in HDFS? Can it be commodity?

Name node is the master node in HDFS and job tracker runs on it. The node contains metadata and works as high availability machine and single pint of failure in HDFS. It cannot be commodity as the entire HDFS works on it.

Career Transition

Intellipaat Job Guarantee Review | Intellipaat Job Assistance Review | Data Engineer Course
Career Transition to Big Data - Yogesh's Success Story | Big Data Hadoop Course - Intellipaat Review
Intellipaat Reviews | Big Data Analytics Course | Career Transformation to Big Data | Gayathri
Intellipaat Reviews | Big Data Analytics Course | Non-Tech To Big Data Expert - Kushagra Chugh
How Can A Non Technical Person Become Data Scientist | Intellipaat Review - Melvin
Non Tech to Data Scientist Career Transition | Data Science Course Review - Intellipaat
Upskilled & Got Job as Analyst After a Career Break |  Data Science Course Story - Shehzin Mulla

22. What is meant by Data node?

Data node is the slave deployed in each of the systems and provides the actual storage locations and serves read and writer requests for clients.

23. What is daemon?

Daemon is the process that runs in background in the UNIX environment. In Windows it is ‘services’ and in DOS it is ‘TSR’.

24. What is the function of ‘job tracker’?

Job tracker is one of the daemons that runs on name node and submits and tracks the MapReduce tasks in Hadoop. There is only one job tracker who distributes the task to various task trackers. When it goes down all running jobs comes to a halt.

25. What is the role played by task trackers?

Daemons that run on What data nodes, the task tracers take care of individual tasks on slave node as entrusted to them by job tracker.

26. What is meant by heartbeat in HDFS?

Data nodes and task trackers send heartbeat signals to Name node and Job tracker respectively to inform that they are alive. If the signal is not received it would indicate problems with the node or task tracker.

27. Is it necessary that Name node and job tracker should be on the same host?

No! They can be on different hosts.

28. What is meant by ‘block’ in HDFS?

Block in HDFS refers to minimum quantum of data for reading or writing. Default block size is 64 MB in HDFS. If a file is 52 MB then HDFS would store it and leave 12 MB empty and ready to use.

29. Can blocks be broken down by HDFS if a machine does not have the capacity to copy as many blocks as the user wants?

Blocks in HDFS cannot be broken. Master node calculates the required space and how data would be transferred to a machine having lower space.

Become a Big Data Architect

30. What is the process of indexing in HDFS?

Once data is stored HDFS will depend on the last part to find out where the next part of data would be stored.

31. How a data node is identified as saturated?

When a data node is full and has no space left the name node will identify it.

32. What type of data is processed by Hadoop?

Hadoop processes the digital data only.

33. How Name node determines which data node to write on?

Name node contains metadata or information in respect of all the data nodes and it will decide which data node to be used for storing data.

34. Who is the ‘user’ in HDFS?

Anyone who tries to retrieve data from database using HDFS is the user. Client is not end user but an application that uses job tracker and task tracker to retrieve data.

35. How the client communicates with Name node and Data node in HDFS?

The communication mode for clients with name node and data node in HDFS is SSH.

36. What is a rack in HDFS?

Rack is the storage location where all the data nodes are put together. Thus it is a physical collection of data nodes stored in a single location.

Go to Our Hadoop Community to get your queries resolved.

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