Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

Concepts of Map reduce

MapReduce is a programming model designed for processing large volumes of data in parallel by dividing the work into a set of independent tasks.

Hadoop is capable of running MapReduce programs written in various languages: Java, Ruby, Python, and C++.

The whole process of Map reduce goes through four phases of execution:

  1. Splitting
  2. Mapping
  3. Shuffling
  4. Reducing

For example, take following data as input for the Map Reduce.

Easy exam notes
Notes are good
Notes are bad

The final output of the MapReduce task is:

WordsCounts
Easy1
Exam1
Notes3
Are2
Good1
Bad1

The process of Map Reduce is:

  1. Splitting: Input divided into fixed-size pieces called input splits.
  2. Mapping: In this phase data in each split is passed to a mapping function to produce output values.
  3. Shuffling: The same words are clubed together along with their respective frequency.
  4. Reducing: This phase summarizes the complete dataset.

Leave a Comment