Hadoop Interview Questions


If you're looking for Hadoop Interview Questions for Experienced or Freshers, you are at right place. There are a lot of opportunities from many reputed companies in the world. According to research, Hadoop has a market share of about 21.5%. So, You still have the opportunity to move ahead in your career in Hadoop Development. Mindmajix offers Advanced Hadoop Interview Questions 2018 that helps you in cracking your interview & acquire dream career as Hadoop Developer.

Are you interested in taking up for Hadoop Certification Training? Enroll for Free Demo on Hadoop Training!

Hadoop Interview Questions & Answers
Q) MapReduce Vs Spark
Hadoop MapReduce Vs Spark
Hadoop MapReduce Spark
An open-source framework for application writing Open-Source big data framework
Process Structured & unstructured data It is for general purpose data processing
It provides batch processing only Fits for both batch & stream processing 
It fails in real-time data processing It can process the real-time data
It is difficult to program & require abstraction It comes with user-friendly APIs of scale.
It reads data from disk & after sends results to HDFS It comes with a graph computation lib called GraphX
It receives fault tolerance via replication It uses RDD & diff data storage models for fault tolerance
It has better security features Its security is currently infancy.
Q1) What is big data?

Big Data is the really large amount of data that exceeds the processing capacity of conventional database systems and requires a special parallel processing mechanism. The data is too big and grows rapidly. This data can be either structural or unstructured data. To retrieve meaningful information from this data, we must choose an alternative way to process it.
Characteristics of Big Data:
Data that has very large volume comes from a variety of sources and formats and flows into an organization with a great velocity is normally referred to as Big Data.

Get ahead in your career by learning Mulesoft through onlineitguru Hadoop admin online Training

Q2) What is Hadoop?

Hadoop is a framework that allows distributed processing of large data sets across clusters of computers using simple and fault tolerant programming model. It is designed to scale up from a very few to thousands of machines, each machine provides local computation and storage. The Hadoop software library itself is designed to detect and handle failures at the application layer.
Hadoop is written in Java by Apache Software Foundation.  It process data very reliably and fault-tolerant manner.
Core components of Hadoop:
HDFS (Storage) + MapReduce/YARN (Processing)



Q3) What are the sources generating big data?

Employers, Users, and Machines

Employees: Historically, employees of organizations generated data.
Users: Then a shift occurred where users started generating data. For example, email, social media, photos, videos, audio, and e-Commerce.
Machines: Smartphones, intelligent kitchen appliances, CCTV cameras, smart meters, global satellites, and traffic flow sensors.
Q4) Why do we need a new framework for handling big data?

Most of the traditional data were organized neatly in relational databases. Datasets now are so large and complex that they are beyond the capabilities of traditional storage and processing systems.
The following challenges demand cost-effective and innovative forms of handling big data at scale:
Get ahead in your career by learning Mulesoft through onlineitguru Hadoop admin online course
Lots of data
Organizations are increasingly required to store more and more data to survive in today’s highly competitive environment. The sheer volume of the data demands lower storage costs as compared to the expensive commercial relational database options.

Complex nature of data
The relational data model has great properties for structured data but many modern systems don’t fit well in a row-column format. Data is now generated by diverse sources in various formats like multimedia, images, text, real-time feeds, and sensor streams. Usually, for storage, the data is transformed, aggregated to fit into the structured format resulting in the loss of the original raw data.

New analysis techniques
Previously simple analysis (like average, sum) would prove to be sufficient to predict customer behavior. But now complex analysis needs to be performed to gain an insightful understanding of data collected. For example, prediction models for effective micro-segmentation need to analyze the customer’s purchase history, browsing behavior, likes and reviews on social media website to perform micro-segmentation. These advanced analytic techniques need the framework to run on.

Hadoop to rescue: Framework that provides low-cost storage and complex analytic processing capabilities

Q5) Why do we need Hadoop framework, shouldn’t DFS be able to handle large volumes of data already?

Yes, it is true that when the datasets cannot fit in a single physical machine, then Distributed File System (DFS) partitions the data, store and manages the data across different machines. But, DFS lacks the following features for which we need Hadoop framework:

Fault tolerant:
When a lot of machines are involved chances of data loss increases. So, automatic fault tolerance and failure recovery become a prime concern.

Move data to computation:
If huge amounts of data are moved from storage to the computation machines then the speed depends on network bandwidth.
Get ahead in your career by learning Mulesoft through onlineitguru Hadoop admin online Training Bangalore
Q6) What is the difference between traditional RDBMS and Hadoop?

RDBMS Hadoop
Schema on write Schema on reading
Scale up approach Scale-out approach
Relational tables Key-value format
Structured queries Function programming
Online Transactions Batch processing
Q7) What is HDFS?

Hadoop Distributed File Systems (HDFS) is one of the core components of the Hadoop framework. It is a distributed file system for Hadoop. It runs on top of the existing file system (ext2, ext3, etc.)

Goals: Automatic recovery from failures, Move Computation than data.

HDFS features:

Supports storage of very large datasets
Write once read many access model
Streaming data access
Replication using commodity hardware
Q8) What is the difference between a regular file system and HDFS?

Regular File Systems HDFS
The small block size of data (like 512 bytes) Large block size (orders of 64mb)
Multiple disks seeks for large files Reads data sequentially after single seek
Q9) What HDFS is not meant for?

HDFS is not good at:

Applications that require low latency access to data (in terms of milliseconds)
A lot of small files
Multiple writers and file modifications
Q10) What is HDFS block size and what did you choose in your project?

By default, the HDFS block size is 64MB. It can be set to higher values as 128MB or 256MB. 128MB is an acceptable industry standard.

Q11) What is the default replication factor?

Default replication factor is 3

Q12) What are different hdfs dfs shell commands to perform copy operation?

$ hadoop fs -copyToLocal
$ hadoop fs -copyFromLocal
$ hadoop fs -put

Q13) What are the problems with Hadoop 1.0?

NameNode: No Horizontal Scalability and No High Availability
Job Tracker: Overburdened.
MRv1: It can only understand Map and Reduce tasks
Q14) What comes in Hadoop 2.0 and MapReduce V2 (YARN)?

NameNode: HA and Federation
JobTracker: Cluster and application resource

Q15) What different type of schedules and type of schedule did you use?

Capacity Scheduler
It is designed to run Hadoop applications as a shared, multi-tenant cluster while maximizing the throughput and the utilization of the cluster.

Fair Scheduler
Fair scheduling is a method of assigning resources to applications such that all apps get, on average, an equal share of resources over time.

Q16) Steps involved in decommissioning (removing) the nodes in the Hadoop cluster?

Update the network addresses in the dfs.exclude and mapred.exclude
$ hadoop dfsadmin -refreshNodes  and hadoop mradmin -refreshNodes
Check Web UI it will show “Decommissioning in Progress”
Remove the Nodes from include file and then run again the step 2 refreshNodes.
Remove the Nodes from slave file.
Q17) Steps involved in commissioning (adding) the nodes in the Hadoop cluster?
Get ahead in your career by learning Mulesoft through onlineitguru Hadoop admin online course
Update the network addresses in the dfs.include and mapred.include
$ hadoop dfsadmin -refreshNodes  and hadoop mradmin -refreshNodes
Update the slave file.
Start the DataNode and NodeManager on the added Node.
Q18) How to keep HDFS cluster balanced?

Balancer is a tool that tries to provide a balance to a certain threshold among data nodes by copying block data distribution across the cluster.

Q19) What is distcp?

istcp is the program comes with Hadoop for copying large amount of data to and from Hadoop file systems in parallel.
It is implemented as MapReduce job where copying is done through maps that run in parallel across the cluster.
There are no reducers.
Q20) What are the daemons of HDFS?

NameNode
DataNode
Secondary NameNode.
Q21) Command to format the NameNode?

$ hdfs namenode -format

Q22) What are the functions of NameNode?

The NameNode is mainly responsible for:

Namespace
Maintain metadata about the data

Block Management
Processes block reports and maintain location of blocks.
Supports block related operations
Manages replica placement

Q23) What is HDFS Federation?

HDFS federation allows scaling the name service horizontally; it uses multiple independent NameNodes for different namespaces.
All the NameNodes use the DataNodes as common storage for blocks.
Each DataNode registers with all the NameNodes in the cluster.
DataNodes send periodic heartbeats and block reports and handles commands from the NameNodes
Q24) What is HDFS High Availability?

In HDFS High Availability (HA) cluster; two separate machines are configured as NameNodes.
But one of the NameNodes is in an Active state; other is in a Standby state.
The Active NameNode is responsible for all client operations in the cluster, while the Standby is simply acting as a slave, maintaining enough state to provide a fast failover if necessary
They shared the same storage and all DataNodes connects to both the NameNodes.
Q25) How client application interacts with the NameNode?

Client applications interact using Hadoop HDFS API with the NameNode when it has to locate/add/copy/move/delete a file.
The NameNode responds the successful requests by returning a list of relevant DataNode servers where the data is residing.
Client can talk directly to a DataNode after the NameNode has given the location of the data
Q26) What is a DataNode?
Get ahead in your career by learning Mulesoft through onlineitguru Hadoop admin online course Hyderabad 
A DataNode stores data in the Hadoop File System HDFS is a slave node.
On startup, a DataNode connects to the NameNode.
DataNode instances can talk to each other mostly during replication.
Q27) What is rack-aware replica placement policy?

Rack-awareness is used to take a node’s physical location into account while scheduling tasks and allocating storage.
Default replication factor is 3 for a data blocks on HDFS.
The first two copies are stored on DataNodes located on the same rack while the third copy is stored on a different rack.


Q28) What is the main purpose of HDFS fsck command?

fsck a utility to check health of the file system, to find missing files, over-replicated, under-replicated and corrupted blocks.

Command for finding the blocks for a file:

$ hadoop fsck -files -blocks –racks

Q29) What is the purpose of DataNode block scanner?

Block scanner runs on every DataNode, which periodically verifies all the blocks stored on the DataNode.
If bad blocks are detected it will be fixed before any client reads.
Q30) What is the purpose of dfsadmin tool?

It is used to find information about the state of HDFS
It performs administrative tasks on HDFS
Invoked by hadoop dfsadmin command as superuser
Q31) What is the command for printing the topology?

It displays a tree of racks and DataNodes attached to the tracks as viewed by the .hdfs dfsadmin -printTopology

Q32) What is RAID?

RAID is a way of combining multiple disk drives into a single entity to improve performance and/or reliability. There are a variety of different levels in RAID
For example, In RAID level 1 copy of the same data on two disks increases the read performance by reading alternately from each disk in the mirror.

Q33) Does Hadoop requires RAID?

In DataNodes storage is not using RAID as redundancy can be achieved by replication between the Nodes.
In NameNode’s disk RAID is recommended.
Q34) What are the site-specific configuration files in Hadoop?

conf/core-site.xml
conf/hdfs-site.xml
conf/yarn-site.xml
conf/mapred-site.xml.
conf/hadoop-env.sh
conf/yarn-env.sh
Q35) What is MapReduce?

MapReduce is a programming model for processing on the distributed datasets on the clusters of a computer.

MapReduce Features:

Distributed programming complexity is hidden
Built in fault-tolerance
Programming model is language independent
Parallelization and distribution are automatic
Enable data local processing
Q36) What is the fundamental idea behind YARN?

In YARN (Yet Another Resource Allocator), JobTracker responsibility is split into:

Resource management
Job scheduling/monitoring having separate daemons.
Yarn supports additional processing models and implements a more flexible execution engine.



Q37) What MapReduce framework consists of?

ResourceManager (RM)

Global resource scheduler
One master RM
NodeManager (NM)

One slave NM per cluster-node.
Container

RM creates Containers upon request by AM
Application runs in one or more containers
ApplicationMaster (AM)

One AM per application
Runs in Container
Q38) What are different daemons in YARN?

ResourceManager: Global resource manager.
NodeManager: One per data node, It manages and monitors usage of the container (resources in terms of Memory, CPU).
ApplicationMaster: One per application, Tasks are started by NodeManager
Q39) What are the two main components of ResourceManager?
Scheduler

It allocates the resources (containers) to various running applications: Container elements such as memory, CPU, disk etc.

ApplicationManager
It accepts job-submissions, negotiating for container for executing the application specific ApplicationMaster and provides the service for restarting the ApplicationMaster container on failure.

Q40) What is the function of NodeManager?

The NodeManager is the resource manager for the node (Per machine) and is responsible for containers, monitoring their resource usage (cpu, memory, disk, network) and reporting the same to the ResourceManager

Q41) What is the function of ApplicationMaster?

ApplicationMaster is per application and it has the responsibility of negotiating appropriate resource containers from the Scheduler, tracking their status and monitoring for progress.

Q42) What are the minimum configuration requirements for a MapReduce application?

The job configuration requires the

input location
output location
map() function
reduce() functions and
job parameters.
Q43) What are the steps to submit a Hadoop job?

Steps involved in Hadoop job submission:

Hadoop job client submits the job jar/executable and configuration to the ResourceManager.
ResourceManager then distributes the software/configuration to the slaves.
ResourceManager then scheduling tasks and monitoring them.
Finally, job status and diagnostic information is provided to the client.
Q44) How does MapReduce framework view its input internally?

It views the input as a set of pairs and produces a set of pairs as the output of the job.

Q45) Assuming default configurations, how is a file of the size 1 GB (uncompressed) stored in HDFS?

Default block size is 64MB. So, file of 1GB will be stored as 16 blocks. MapReduce job will create 16 input splits; each will be processed with separate map task i.e. 16 mappers.

Q46) What are Hadoop Writables?

Hadoop Writables allows Hadoop to read and write the data in a serialized form for transmission as compact binary files. This helps in straightforward random access and higher performance. Hadoop provides in built classes, which implement Writable: Text, IntWritable, LongWritable, FloatWritable, and BooleanWritable.

Q47) Why comparison of types is important for MapReduce?

A comparison is important as in the sorting phase the keys are compared with one another. For comparison, the WritableComparable interface is implemented.

Q48) What is the purpose of RawComparator interface?

RawComparator allows the implementors to compare records read from a stream without deserialization them into objects, so it will be optimized, as there is not overhead of object creation.

Q49) What is a NullWritable?

It is a special type of Writable that has zero-length serialization. In MapReduce, a key or a value can be declared as NullWritable if we don’t need that position, storing constant empty value.

Q50) What is Avro Serialization System?

Avro is a language-neutral data serialization system. It has data formats that work with different languages. Avro data is described using a language-independent schema (usually written in JSON). Avro data files support compression and are splittable.

Avro provides AvroMapper and AvroReducer to run MapReduce programs.

Q51) Explain use cases where SequenceFile class can be a good fit?

When the data is of type binary then SequenceFile will provide a persistent structure for binary key-value pairs. SequenceFiles also work well as containers for smaller files as HDFS and MapReduce are optimized for large files.

Q52) What is MapFile?

A MapFile is an indexed SequenceFile and it is used for look-ups by key.

Q53) What is the core of the job in MapReduce framework?

The core of a job:
Mapper interface: map method
Reducer interface reduce method

Q54) What are the steps involved in MapReduce framework?

Firstly, the mapper input key/value pairs maps to a set of intermediate key/value pairs.
Maps are the individual tasks that transform input records into intermediate records.
The transformed intermediate records do not need to be of the same type as the input records.
A given input pair maps to zero or many output pairs.
The Hadoop MapReduce framework creates one map task for each InputSplit generated by the InputFormat for the job.
It then calls map(WritableComparable, Writable, Context) for each key/value pair in the InputSplit for that task.
All intermediate values associated with a given output key are grouped passed to the Reducers.
Q55) Where is the Mapper Output stored?

The mapper output is stored on the Local file system of each individual mapper nodes. The intermediate data is cleaned up after the Hadoop Job completes.

Q56) What is a partitioner and how the user can control which key will go to which reducer?

Partitioner controls the partitioning of the keys of the intermediate map-outputs by the default. The key to decide the partition uses hash function. Default partitioner is HashPartitioner.
A custom partitioner is implemented to control, which keys go to which Reducer.

public class SamplePartitioner extends Partitioner {

@Override

public int getPartition(Text key, Text value, int numReduceTasks) {

}

}

Q57) What are combiners and its purpose?

Combiners are used to increase the efficiency of a MapReduce program. It can be used to aggregate intermediate map output locally on individual mapper outputs.
Combiners can help reduce the amount of data that needs to be transferred across to the reducers.
Reducer code as a combiner if the operation performed is commutative and associative.
Hadoop may or may not execute a combiner.
Q58) How a number of partitioners and reducers are related?

The total numbers of partitions are the same as the number of reduce tasks for the job.

Q59) What is IdentityMapper?

IdentityMapper implements the mapping inputs directly to output. IdentityMapper.class is used as a default value when JobConf.setMapperClass is not set.

Q60) What is IdentityReducer?

In IdentityReducer no reduction is performed, writing all input values directly to the output. IdentityReducer.class is used as a default value when JobConf.setReducerClass is not set

Q61) What is the reducer and its phases?

Reducer reduces a set of intermediate values, which has same key to a smaller set of values. The framework then calls reduce().
Syntax:
reduce(WritableComparable, Iterable, Context) method for each pair in the grouped inputs.
Reducer has three primary phases:

Shuffle
Sort
Reduce
Q62) How to set the number of reducers?

The number of reduces for the user sets the job:

Job.setNumReduceTasks(int)
-D mapreduce.job.reduces
Q63) Detail description of the Reducer phases?

Shuffle:
Sorted output (Mapper) à Input (Reducer). Framework then fetches the relevant partition of the output of all the mappers.

Sort:
The framework groups Reducer inputs by keys. The shuffle and sort phases occur simultaneously; while map-outputs are being fetched they are merged.

Secondary Sort:
Grouping the intermediate keys are required to be different from those for grouping keys before reduction, then Job.setSortComparatorClass(Class).

Reduce:
reduce(WritableComparable, Iterable, Context) method is called for each pair in the grouped inputs.
The output of the reduce task is typically written using Context.write(WritableComparable, Writable).
Get ahead in your career by learning Mulesoft through onlineitguru Hadoop administration  online Training 
Q64) Can there be no Reducer?

Yes, the number of reducer can be zero if no reduction of values is required.

Q65) What can be optimum value for Reducer?

Value of Reducers can be: 0.95

1.75 multiplied by ( * < number of maximum containers per node>)
Increasing number of reducers

Increases the framework overhead
Increases load balancing
Lowers the cost of failures
Q66) What are a Counter and its purpose?

The counter is a facility for MapReduce applications to report its statistics. They can be used to track job progress in a very easy and flexible manner. It is defined by MapReduce framework or by applications. Each Counter can be of any Enum type. Applications can define counters of type Enum and update them via counters.incrCounter in the map and/or reduce methods.

Q67) Define different types of Counters?

Built in Counters:

Map Reduce Task Counters
Job Counters
Custom Java Counters:

MapReduce allows users to specify their own counters (using Java enums) for performing their own counting operation.
Q68) Why Counter values are shared by all map and reduce tasks across the MapReduce framework?

Counters are global so shared across the MapReduce framework and aggregated at the end of the job across all the tasks.

Q69) Explain speculative execution.

Speculative execution is a way of dealing with individual machine’s performance. As there are lots of machines in the cluster, some machines can have low performance, which affects the performance of the whole job.
Speculative execution in Hadoop can run multiple copies of the same map or reduce task on different task tracker nodes and the results from first node to finish are used.
Q70) What is DistributedCache and its purpose?

DistributedCache is a facility provided by the MapReduce framework to cache files (text, archives, jars etc.) needed by applications. It distributes application-specific, large, read-only files efficiently. The user needs to use DistributedCache to distribute and symlink the script file.

Q71) What is the Job interface in MapReduce framework?

Job is the primary interface for a user to describe a MapReduce job to the Hadoop framework for execution. Some basic parameters are configured for example:

Job.setNumReduceTasks(int)
Configuration.set(JobContext.NUM_MAPS, int)
Mapper
Combiner (if any)
Partitioner
Reducer
InputFormat
OutputFormat implementations
setMapSpeculativeExecution(boolean))/ setReduceSpeculativeExecution(boolean))
Maximum number of attempts per task (setMaxMapAttempts(int)/ setMaxReduceAttempts(int)) etc.
DistributedCache for large amounts of (read-only) data.
Q72) What is the default value of map and reduce max attempts?

The framework will try to execute a map task or reduce task by default 4 times before giving up on it.

Q73) Explain InputFormat?

InputFormat describes the input-specification for a MapReduce job. The MapReduce framework depends on the InputFormat of the job to:

Checks the input-specification of the job.
It then splits the input file(s) into logical InputSplit instances, each of which is then assigned to an individual Mapper.

To extract input records from the logical InputSplit for processing by the Mapper it provides the RecordReader implementation.
Default: TextInputFormat

Q74) What is InputSplit and RecordReader?

InputSplit specifies the data to be processed by an individual Mapper.
In general, InputSplit presents a byte-oriented view of the input.

Default: FileSplit
RecordReader reads pairs from an InputSplit, then processes them and presents record-oriented view
Get ahead in your career by learning Mulesoft through onlineitguru Hadoop administration  online Training  Bangalore
Q75) Explain the Job OutputFormat?

OutputFormat describes details of the output for a MapReduce job.
The MapReduce framework depends on the OutputFormat of the job to:
It checks the job output-specification

To write the output files of the job in the pairs, it provides the RecordWriter implementation.
Default: TextOutputFormat

Q76) How is the option in Hadoop to skip the bad records?

Hadoop provides an option where a certain set of bad input records can be skipped when processing map inputs. This feature can be controlled by the SkipBadRecords class.

Check Out Hadoop Tutorials

Q77) Different ways of debugging a job in MapReduce?

Add debug statement to log to standard error along with the message to update the task’s status message. Web UI makes it easier to view.
Create a custom counter, it gives valuable information to deal with the problem dataset
Task page and task detailed page
Hadoop Logs
MRUnit testing
PROGRAM 1: Counting the number of words in an input file

Introduction
This section describes how to get the word count of a sample input file.

Software Versions
The software versions used are:
VirtualBox: 4.3.20
CDH 5.3: Default MapReduce Version
hadoop-core-2.5.0
hadoop-yarn-common-2.5.0

Steps
1. Create the input file
Create the input.txt file with sample text.
$ vi input.txt
Thanks Lord Krishna for helping us write this book
Hare Krishna Hare Krishna Krishna Krishna Hare Hare
Hare Rama Hare Rama Rama Rama Hare Hare

2. Move the input file into HDFS
Use the –put or –copyFromLocal command to move the file into HDFS
$ hadoop fs -put input.txt

3. Code for the MapReduce program
Java files:
WordCountProgram.java  // Driver Program
WordMapper.java         // Mapper Program
WordReducer.java        // Reducer Program
————————————————–
WordCountProgram.java File: Driver Program
————————————————–
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.input.TextInputFormat;
import org.apache.hadoop.mapreduce.lib.output.TextOutputFormat;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner;
public class WordCountProgram extends Configured implements Tool{
@Override
public int run(String[] args) throws Exception {
Configuration conf = new Configuration();
Job job = new Job(conf, “wordcountprogram”);
job.setJarByClass(getClass());
// Configure output and input source
TextInputFormat.addInputPath(job, new Path(args[0]));
job.setInputFormatClass(TextInputFormat.class);
job.setMapperClass(WordMapper.class);
job.setReducerClass(WordReducer.class);
// Configure output
TextOutputFormat.setOutputPath(job, new Path(args[1]));
job.setOutputFormatClass(TextOutputFormat.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(IntWritable.class);
return job.waitForCompletion(true) ? 0 : 1;
}
public static void main(String[] args) throws Exception {
int exitCode = ToolRunner.run(new WordCountProgram(), args);
System.exit(exitCode);
}
}
————————————————–
WordMapper.java File: Mapper Program
————————————————–
import java.io.IOException;
import java.util.StringTokenizer;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Mapper;
public class WordMapper extends Mapper {
private final static IntWritable count = new IntWritable(1);
private final Text nameText = new Text();
@Override
protected void map(LongWritable key, Text value, Context context) throws IOException,
InterruptedException {
StringTokenizer tokenizer = new StringTokenizer(value.toString(),” “);
while (tokenizer.hasMoreTokens()) {
nameText.set(tokenizer.nextToken());
context.write(nameText, count);
}
}
}
———————————————–
WordReducer.java file: Reducer Program
————————————————–
import java.io.IOException;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;
public class WordReducer extends Reducer {
@Override
protected void reduce(Text t, Iterable counts, Context context)
throws IOException, InterruptedException {
int sum = 0;
for (IntWritable count : counts) {
sum += count.get();
}
context.write(t, new IntWritable(sum));
}
}
4. Run the MapReduce program
Create the jar of the Code in Step 3 and use the following command to run the MapReduce program
$ hadoop jar WordCount.jar WordCountProgram input.txt output1
Here,
WordCount.jar: Name of jar exported having the all the methods.
WordCountProgram: Driver Program having the entire configuration
input.txt: Input file
output1: Output folder where the output file will be stored
5. View the Output
View the output in the output1 folder
$ hadoop fs -cat /user/cloudera/output1/part-r-00000
Hare  8
Krishna     5
Lord  1
Rama  4
Thanks      1
book  1
for   1
helping     1
this  1
us    1
write 1

Q78) What problem does Apache Flume solve?

Scenario:

There are several services producing a huge number of logs that run in different servers. These logs need to be accumulated, stored and analyzed together.
Hadoop has emerged as a cost effective and scalable framework for storage and analysis for big data.
Problem:
Get ahead in your career by learning Mulesoft through onlineitguru Hadoop administration  online  course Hyderabad 
How can these logs be collected, aggregated and stored to a place where Hadoop can process them?
Now there is a requirement for a reliable, scalable, extensible and manageable solution.
Q79) What is Apache Flume?

Apache Flume is a distributed data collection service that gets flows of data (like logs) from the systems that generate them and aggregates them to a centralized data store where they can be processed together.

Goals: reliability, recoverability, and scalability

Flume features:

Ensures guaranteed data delivery
Gather high volume data streams in real time
Streaming data is coming from multiple sources into Hadoop for analysis
Scales horizontally
Q80) How is Flume-NG different from Flume 0.9?

Flume 0.9:

Centralized configuration of the agents handled by Zookeeper.
Input data and writing data are handled by same thread.
Flume 1.X (Flume-NG):
No centralized configuration. Instead a simple on-disk configuration file is used.
Different threads called runners handle input data and writing data.

Q90) What is the problem with HDFS and streaming data (like logs)?

In a regular filesystem when you open a file and write data, it exists on disk even before it is closed.
Whereas in HDFS, the file exists only as a directory entry of zero length till it is closed. This implies that if data is written to a file for an extended period without closing it, you may be left with an empty file if there is a network disconnect with the client.
It is not a good approach to close the files frequently and create smaller files as this leads to poor efficiency in HDFS.
Q91) What are core components of Flume?

Flume architecture:



Flume Agent:

An agent is a daemon (physical Java virtual machine) running Flume.
It receives and stores the data until it is written to a next destination.
Flume source, channel and sink run in an agent.
Source:

A source receives data from some application that is producing data.
A source writes events to one or more channels.
Sources either poll for data or wait for data to be delivered to them.
For Example: log4j, Avro, syslog, etc.
Sink:

A sink removes the events from the agent and delivering it to the destination.
The destination could be different agent or HDFS, HBase, Solr etc.
For Example: Console, HDFS, HBase, etc.
Channel:

A channel holds events passing from a source to a sink.
A source ingests events into the channel while sink removes them.
A sink gets events from one channel only.
For Example: Memory, File, JDBC etc.
Q92) Explain a common use case for Flume?

Common Use case: Receiving web logs from several sources into HDFS.
Web server logs → Apache Flume → HDFS (Storage) → Pig/Hive (ETL) → HBase (Database) → Reporting (BI Tools)

Logs are generated by several log servers and saved in local hard disks, which need to be pushed into HDFS using Flume framework.
Flume agents, which are running on, log servers collect the logs, which are pushed into HDFS.
Data analytics tools like Pig or Hive then process this data.
The analysed data is stored in structured format in HBase or other database.
Business intelligence tools will then generate reports on this data.
Q93) What are Flume events?

Flume events:

Basic payload of data transported by Flume (typically a single log entry)
It has zero or more headers and a body


Event Headers are key-value pairs that are used to make routing decisions or carry other structured information like:

Timestamp of the event
Hostname of the server where event has originated
Event Body

Event Body is an array of bytes that contains the actual payload.

Q94) Can we change the body of the flume event?

Yes, editing Flume Event using interceptors can change its body.

Q95) What are interceptors?



Interceptor

An interceptor is a point in your data flow where you can inspect and alter flume events. After the source creates an event, there can be zero or more interceptors tied together before it is delivered to sink.

Q96) What are channel selectors?

Channel selectors:

Channel selectors are responsible for how an event moves from a source to one or more channels.
Types of channel selectors are:

Replicating Channel Selector: This is the default channel selector that puts a copy of event into each channel
Multiplexing Channel Selector: Routes data into different channel depending on header information and/or interceptor logic
Q97) What are sink processors?

Sink processor:

Sink processor is a mechanism for failover and load balancing events across multiple sinks from a channel

Q98) How to Configure an Agent?

An agent is configured using a simple Java property file of key/value pairs
This configuration file is passed as an argument to the agent upon startup.
You can configure multiple agents in a single configuration file. It is required to pass an agent identifier (called a name).
Each agent is configured starting with:
agent.sources=
agent.channels=
agent.sinks=
Each source, channel and sink also has a distinct name within the context of that agent.
Q99) Explain the “Hello world” example in flume.

In the following example, the source listens on a socket for network clients to connect and sends event data. Those events were written to an in-memory channel and then fed to a log4j sink to become output.
Configuration file for one agent (called a1) that has a source named s1, a channel named c1 and a sink named k1.
# netcatAgent.conf: Logs the netcat events to console
# Name of the components on this agent
a1.sources=s1
a1.channels=c1
a1.sinks=k1
# Configure the source
a1.sources.s1.type=Netcat

Q100) What is Hive?

Hive is a Hadoop based system for querying and analyzing large volumes of Structured data which is stored on HDFS or in other words Hive is an query engine built to work on top of Hadoop that can compile queries into Map Reduce jobs and run them on the cluster.

Q101) In which scenario Hive is good fit?

Data warehousing applications where more static data is analyzed.
Fast response time is not the criteria.
Data is not changing rapidly.
An abstract to underlying MapReduce programs
Like SQL
Q102) What are the limitations of Hive?

Hive does not provide:

Record-level operations like INSERT, DELETE or UPDATE.
Cannot be used for low latency jobs.
Transaction.
Q103) What are the differences between Hive and RDBMS?

HIVE:

Schema on Read
Batch processing jobs
Data stored on HDFS
Processed using MapReduce
RDBMS:

Schema on write
Real time jobs
Data stored on internal structure
Processed using database
Q104) What are the components of Hive architecture?

Hive Driver
Metastore
Hive CLI/HUE/HWI
Q105) What is the purpose of Hive Driver?

Hive Driver is responsible for compiling, optimizing and then executing the HiveQL.

Q106) What is a Metastore and what it stores?

It is a database by default Derby SQL server
Holds metadata about table definition, column, and data types partitioning information,
It can be stored in MySQL, derby, oracle etc.
Q107) What is the purpose of storing the metadata?

People want to read the dataset with a particular schema in mind.
For e.g.: BA and CFO of a company look at the data with a particular schema.
BA may be interested in say IP addresses and timings of the clicks in a weblog while the CFO may be interested in say the clicks that were direct clicks on the website or from paid Google adds.
Underneath it’s the same dataset that is accessed. This schema is used again and again. So it makes sense to store this schema in a RDBMS.

Q108) List the various options available with the Hive command.

Syntax:

$ ./hive –service serviceName
where
serviceName options are:
cli
help
hiveserver
hwi
jar
lineage
metastore
rcfile

Q109) Explain the different services that can be invoked using the Hive command.

cli

default service
used to define tables, run queries, etc.
hiveserver

aemon that listens for Thrift connections from other processes
hwi

Simple web interface for running queries
jar

Extension of the hadoop jar command
metastore

External Hive metastore service to support multiple clients
rcfile

Tool for printing the contents of an RFFile
Q110) Can you execute Hadoop dfs Commands from Hive CLI? How?

Hadoop dfs commands can be run from within the hive CLI by dropping the hadoop work from the command and adding a semicolon in the end.

For Example:

Hadoop dfs command:
hadoop dfs -ls /
From within hive
hive > dfs -ls / ;

Q111) How to give multiline comments in Hive Scripts?

Hive does not support multiline comments. All lines of comments should start with the string —
For e.g.
— This is first line of comment
— This is second line of comment !!

Q112) What is the reason for creating a new metastore_db whenever Hive query is run from a different directory?

Embedded mode:
Whenever Hive runs in embedded mode, it checks whether the metastore exists. If the metastore does not exist then it creates the local metastore.

Property: Default value

javax.jdo.option.ConnectionURL = “jdbc:derby:;databaseName=metastore_db;create=true”

Q113) When Hive is run in embedded mode, how to share the metastore within multiple users?

No.
For sharing use the standalone database (like MySQL, PostGresQL) for metastore

Q114) How can an application connect to Hive run as a server?

Thrift Client: Hive commands can be called hive command from programming languages like Java, PHP, Python, Ruby, C++
JDBC Driver: Type 4 (pure Java) JDBC Driver
ODBC driver:  ODBC protocol

Q115) List the Primitive Data Types?

DataTypes:
TINYINT

Q116) What problem does Apache Pig solve?

Scenario
1. MapReduce paradigm presented by Hadoop is low level and rigid so developing can be challenging.
2. Jobs are (mainly) in Java where developer needs to think in terms of map and reduce

Problem
1. Many common operations like filters, projections, joins requires a custom code
2. Not everyone is a Java expert!!!
3. MapReduce has a long development cycle
Get ahead in your career by learning Mulesoft through onlineitguru Hadoop administration  online course Bangalore 
Q117) What is Apache Pig?

Apache Pig is a platform for analyzing large data sets that consists high-level language for expressing data analysis programs, with infrastructure for evaluating these programs.
Goals: Ease of programming, Improved Code readability, Flexible, Extensible
Pig Features:
Ease of programming:

Generates MapReduce programs automatically
Fewer lines of code
Flexible:

Metadata is optional
Extensible:

Easy extensible by UDFs
Resides on the client machine



Q118) In which scenario MapReduce is a better fit than Pig?

Some problems are harder to express in Pig. For example:

Complex grouping or joins
Combining lot of datasets
Replicated join
Complex cross products
In such cases, Pig’s MAPREDUCE relational operator can be used which allows plugging in Java MapReduce job.

Q119) In which scenario Pig is better fit than MapReduce?

Pig provides common data operations (joins, filters, group by, order by, union) and nested data types (tuple, bag and maps), which are missing from MapReduce.

Q120) Where not to use Pig?

Completely unstructured data. For example: images, audio, video
When more power to optimize the code is required
Retrieving a single record in a very large dataset
Q121) What can be feed to Pig?

We can input structured, semi-structured or unstructured data to Pig.
For example, CSV’s, TSV’s, Delimited Data, Logs

Q122) What are the components of Apache Pig platform?

Pig Engine
Parser, Optimizer and produces sequences of MapReduce programs

Grunt
Pig’s interactive shell
It allows users to enter Pig Latin interactively and interact with HDFS

Pig Latin
High level and easy to understand dataflow language
Provides ease of programming, extensibility and optimization.

Q123) What are the execution modes in Pig?

Pig has two execution modes:

Local mode
No Hadoop / HDFS installation is required
All processing takes place in only one local JVM
Used only for quick prototyping and debugging Pig Latin script
pig -x local

MapReduce mode (Default)
Parses, checks and optimizes locally

Plans execution as one MapReduce job
Submits job to Hadoop
Monitors job progress
pig or pig -x mapreduce

Q124) Different running modes for running Pig?

Pig has two running modes:

Interactive mode
Pig commands runs one at a time in the grunt shell

Batch mode
Commands are in pig script file.

Q125) What are the different ways to develop PigLatin scripts?

Plugins are available which features such as syntax/error highlighting, auto completion etc.
Eclipse plugins

PigEditor
PigPen
Pig-Eclipse
Vim, Emacs, TextMate plugins also available

Q126) What are the Data types in Pig?

Scalar Types
Int, long, float, double, chararray, bytearray, boolean (since Release 0.10.0)

Complex Types
Map, Tuple, Bag

Q127) Which type in Pig is not required to fit in Memory?

Bag is the type not required to fit in memory, as it can be quite large.
It can store bags to disk when necessary.
Q128) What is a Map in Pig?

Map is a chararray to data element mapping, where data element be of any Pig data type.
It can also be called as a set of key-value pairs where
     Keys → chararray and Values → any pig data type
For example [‘student’#’Mahi’, ’Rank’#1]

Q129) What is a Tuple in Pig? (~ RDBMS row in a table)

A tuple is an ordered set of fields; fields can be of any data type.
It can also be called as a sequence of fields of any type.

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


Q130) HDFS and Mapreduce Features in Hadoop Versions:

Feature 1.x 0.22 2.x
Secure Authentication Yes No Yes
Old Configuration Names Yes Deprecate Deprecate
New Configuration Names No Yes Yes
Old Mapreduce API Yes Yes Yes
New Mapreduce API Yes Yes Yes
Mapreduce 1 Runtime No No Yes
Mapreduce 2 Runtime No No Yes
HDFS Federation No No Yes
HDFS High Availability No No Yes
Q131) What is Cluster Rebalancing?

The architecture of HDFS is in flow with data rebalancing schemes.
A scheme automatically move data from one data node into another data node.
If in case, there is a sudden rise in particular file, a scheme dynamically creates additional replies and rebalance the data within cluster. This type of data rebalancing schemes are yet to be positioned.

Q132) What is Data Integrity?

Data Integrity is a method where a block of data is fetched from a datanode, but it comes corrupted. This corruption is due to faults in storage device, network and buggy software.
HDFS software employs checksum checking on the HDFS file contents.
When a client handles file contents, it verifies that data retrieved matches the checksum of the relevant checksum file.
If not, then the client may opt to retrieve the block from variant datanode that replicates the other block.
Q133) What is Hadoop File System?

Hadoop File System indicating the compiler to interact with Linux local environment to HDFS environment.
Hadoop File System is not support the -vi command. Because HDFS is write once.
Hadoop File System is support for -touchz command.
Hadoop File System looks the only HDFS directory but not local directory.
We can not create a file on top of HDFS.
We can not create the file on local.
We can not update a file on top of HDFS. We can updations in local, after that file is put into the HDFS.
Hadoop file system does not support hard links (or) soft links.
Hadoop File System does not implement user quotas.
Error implementation is sent to stderr & output is sent to stdout.
Display detailed help for a command:
Hadoop fs - help

Q134) User Command Archive?

Hadoop stores the small files inefficiently such as each file get stored in a  block & namenode has to keep the metadata information in memory so with this reason most of the namenode memory will get eat up this small files only which results in a wastage of memory.
To avoid the same problem we use hadoop archives (or) har files (.har a the extension for all the archive files).
When creating archive directory the input is converted to mapreduce jobs, so we can call hadoop archives as a input for our mapreduce programming.
1. Hadoop archives are special format archives.
2. Hadoop archive maps to a file system directory.
3. Hadoop archive always has a .har extension
4. Hadoop archive directory contains metadata.

Q135) What is Serialization?

Serialization transforms objects into bytes
Hadoop utilizes PR6 for transmitting across the network.
Hadoop employs a very own serialization format which is writable
Comparison types are crucial 
Hadoop enables a Raw comparator, that abolishes deserialization
External frameworks are enables via : enter Avro
Q136) Datanode block scanner?

All the datanodes runs the block scanner, which periodically verifies all the blocks stored on the datanode. This allows bad blocks to be detected and fixed before they are read by clients.
It maintains

A list of blocks to verify
It scans them one by one for checksum errors.
Block scanner report can be verify by visiting http://datanode:50075/blockScannerReport.
Q137) What is HBASE Data Storage?

HBASE is column oriented data storage

Column-Oriented:

The reason to store values on a per column basis instead is based on the assumption 
That for specific queries, not all of the values are needed
Reduced I/O
The data of column-oriented databases is saved in the way grouped by columns and the following column values are stored on the contiguous disk locations. This is quite different from the conventional approach followed by the traditional databases which stores all the rows contiguously. 
Storefile: Store File for each state for each region for the table.
Block: Blocks within a store file within a store for each region for the table
Hlog used for recovering
Send heartbeat(loadinfo) to master
Write requests handle
Read request handle
Flush
Compaction
Region Splits(Manage)
Q138) What is Hadoop Streaming?

A utility to enable Mapreduce code in any language: C, Perl, Python, C++, Bash etc. The examples include a python mapper and an AWK reducer.

Q139) What is the difference between Base & NOSQL?

Favours consistencies are availability (but availability is good in practice)
Great hadoop integration (very efficient bulk loads, Mapreduce Analysis)
Ordered range partitions(not hash)
Automatically shards/scales (just run on more servers)
Sparse column stronge(not key value)

Q140) What is HBASE Client?

The HBase client finds the HRegion servers that serve the specific row range of interest. The HBase client, on instantiation, exchanges information with the HBase Master to locate the ROOT region. The client communicates with the region server of interest once the ROOT region is located and scans it to locate the META region that contains the user region’s location which consists of the desired row range.

Q141) Why HBASE?

We can infrastructure, no usage limits
Data Model
Semistructured data in Hbase
Time series ordered
Scaling is built-in (Just add more servers)
But extra indexing is DIY
Very active developer community
Established, mature project (in relative terms)
Matches our own toolset (Java/Linux based)

Q142) What is ZOOKEEPER?

Master election and server availability
cluster management: Assignment transaction state management
Client contacts zookeeper to bootstrap connection to the HBase cluster.
Region key ranges, region server address
Guarantees consistency of data across clients.
Get ahead in your career by learning Mulesoft through onlineitguru Hadoop administration  online course
Share:

No comments:

Post a Comment

Search This Blog

Recent Posts