0% found this document useful (0 votes)
56 views2 pages

BDA Viva Q&A Guide

The document consists of a list of viva questions related to Big Data Analytics, covering fundamental concepts such as big data, Apache Hadoop, and its ecosystem components. It includes inquiries about data management, processing, storage, and tools associated with Hadoop, as well as specific technologies like Pig, Hive, and HBase. The questions aim to assess knowledge on various aspects of big data and its analytical frameworks.

Uploaded by

fiendthedefiant
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views2 pages

BDA Viva Q&A Guide

The document consists of a list of viva questions related to Big Data Analytics, covering fundamental concepts such as big data, Apache Hadoop, and its ecosystem components. It includes inquiries about data management, processing, storage, and tools associated with Hadoop, as well as specific technologies like Pig, Hive, and HBase. The questions aim to assess knowledge on various aspects of big data and its analytical frameworks.

Uploaded by

fiendthedefiant
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Big Data Analytics

VIVA Questions
1. What is big data?
2. Define big data.
3. What are the different types of digital data?
4. What is Apache Hadoop?
5. Why do we prefer Hadoop for big data analysis?
6. What are the four core modules of Hadoop?
7. What is the difference between Hadoop and a Traditional RDBMS?
8. How does the Hadoop streaming work?
9. In which language is the Hadoop framework written?
[Link] does the Hadoop ecosystem consist of?
11. What does the data management part of Hadoop ecosystem contain?
12. What does the data access part of Hadoop Ecosystem contain?
13. What does the data processing part of Hadoop Ecosystem contain?
14. What does the data storage part of Hadoop Ecosystem contain?
15. What is HDFS?
16. What are the different concepts of hdfs?
17. What is a hdfs cluster? What is a data node? What is a name node?
18. What is replication concept in hdfs?
19. What are the different hdfs commands?
20. What are the different file system interfaces which can be used in
Hadoop?
21. What are the data ingestion tools used with Hadoop?
[Link] are the different purposes of Flume and sqoop?
[Link] are the different phases of map reduce?
[Link] happens in the mapping phase?
[Link] happens in the reduce phase?
[Link] is the job scheduling done for mapreduce job run?
[Link] is pig?
[Link] are the two execution modes of pig?
[Link] is pig different from other components of Hadoop?
30. What is grunt?
31. What is pig Latin?
[Link] are the different User defined functions which can be used with pig?
[Link] is hive?
[Link] is hive different from other Hadoop components?
[Link] is hive shell?
[Link] is HiveQL?
[Link] is HBase?

Common questions

Powered by AI

The four core modules of Hadoop are HDFS, MapReduce, YARN, and Hadoop Common. HDFS, or Hadoop Distributed File System, provides reliable distributed storage. MapReduce offers a programming model for distributed processing of datasets. YARN manages and schedules resources among applications. Hadoop Common contains the libraries and utilities needed by other Hadoop modules. Together, these modules create a robust framework for handling large-scale data processing with efficiency and reliability .

Apache Hadoop is preferred for big data analytics due to its scalability, cost-effectiveness, and ability to process large volumes of unstructured data. It provides a fault-tolerant storage system via HDFS and supports batch processing through the MapReduce framework, making it ideal for complex analytics. Additionally, the Hadoop ecosystem includes various tools such as Hive, Pig, and HBase, which enhance data management, analysis, and storage capabilities efficiently .

Hadoop Streaming provides a utility that allows the creation of MapReduce jobs using any executable or script as the mapper and/or reducer, enabling the use of non-Java languages such as Python or Ruby. Users can implement custom mappers and reducers in their preferred language by specifying the scripts in the command line. This flexibility allows users unfamiliar with Java to leverage Hadoop’s processing power, expanding its usability to a broader audience and a variety of programming environments .

Hadoop differs from traditional RDBMS primarily through its ability to handle large volumes of unstructured data across distributed networks. While RDBMS systems are optimized for processing transactional data in structured formats, Hadoop is designed for distributed storage and processing of massive datasets using simple programming models. Hadoop utilizes HDFS (Hadoop Distributed File System), allowing data to be stored in a distributed manner, which inherently provides fault tolerance and scalability, while RDBMS functions better with smaller datasets that require ACID (Atomicity, Consistency, Isolation, Durability) properties .

Apache Pig operates in two execution modes: Local Mode and MapReduce Mode. Local Mode is suitable for small data processing tasks and debugging since it runs on the local file system without requiring a distributed setup. MapReduce Mode, on the other hand, is used for processing large datasets across a distributed Hadoop cluster, taking full advantage of cluster resources for parallel computation. These two modes provide flexibility in data processing, allowing users to choose based on the scale of data and computational needs .

The mapping and reduce phases serve distinct functions in the MapReduce framework. In the mapping phase, input data is split into tokens and processed in parallel across various map tasks. Each task outputs key-value pairs. This step is crucial for transforming raw data into an intermediate format for further analysis. The reduce phase consolidates these intermediate key-value pairs by aggregating values with the same key. This phase simplifies and summarizes the data, providing the final output. Together, these phases allow efficient distributed processing of large datasets across a Hadoop cluster .

Replication in HDFS refers to the storage of multiple copies of data blocks across different nodes in the cluster. This strategy ensures data reliability and fault tolerance, as data is still accessible even if a node fails. Default replication factor is usually set to three, meaning each data block is stored on three different nodes. This redundancy allows HDFS to automatically recover lost data and maintain operational integrity without data loss, crucial for the stability of big data applications .

The data processing part of the Hadoop ecosystem enhances big data analytics primarily through tools like MapReduce and YARN (Yet Another Resource Negotiator). MapReduce offers a programming model that splits data into chunks for distributed processing, thus enabling parallel computation on large datasets. YARN manages resources efficiently across clusters, allowing multiple data processing applications to run simultaneously. These components enable rapid processing of complex analytical tasks on vast amounts of data, providing insights that are faster and more scalable compared to traditional systems .

Flume and Sqoop cater to different data ingestion needs within the Hadoop ecosystem. Flume is specifically designed for collecting and aggregating large amounts of log data from various sources in real time. It ingests log and streaming data to HDFS quickly and reliably. Sqoop, on the other hand, focuses on transferring data between Hadoop and relational databases, allowing for efficient bulk import and export of structured data. Each tool addresses unique requirements for moving different types of data into Hadoop for processing .

Data management in Hadoop encompasses components like HDFS and HBase. HDFS provides scalable and reliable storage, while HBase delivers fast random access to large datasets. These systems integrate seamlessly with processing engines like MapReduce and query interfaces like Hive, allowing for efficient data retrieval, processing, and storage. The synergy among these components ensures high throughput and increased scalability, vital for processing extensive and diverse datasets typical in big data environments .

You might also like