hadoop map reduce
play

Hadoop Map Reduce 01/18/2018 1 MapReduce 2-in-1 A programming - PowerPoint PPT Presentation

Hadoop Map Reduce 01/18/2018 1 MapReduce 2-in-1 A programming paradigm A query execution engine A kind of functional programming We focus on the MapReduce execution engine of Hadoop through YARN 01/18/2018 2 Overview MR Driver Program


  1. Hadoop Map Reduce 01/18/2018 1

  2. MapReduce 2-in-1 A programming paradigm A query execution engine A kind of functional programming We focus on the MapReduce execution engine of Hadoop through YARN 01/18/2018 2

  3. Overview MR Driver Program MR Job Developer Master node Slave nodes 01/18/2018 3

  4. Code Example 01/18/2018 4

  5. Job Execution Overview Driver Job Job Map Shuffle Reduce Cleanup submission preparation 01/18/2018 5

  6. Job Submission Execution location: Driver node A driver machine should have the following Compatible Hadoop binaries Cluster configuration files Network access to the master node Collects job information from the user Input and output paths Map, reduce, and any other functions Any additional user configuration Packages all this in a Hadoop Configuration 01/18/2018 6

  7. Hadoop Configuration Key: String Value: String Input hdfs://user/eldawy/README.txt Output hdfs://user/eldawy/wordcount Mapper edu.ucr.cs.cs226.eldawy.WordCount … Reducer … JAR File User-defined User-defined Serialized over network Master node 01/18/2018 7

  8. Job Preparation Runs on the master node Gets the job ready for parallel execution Collects the JAR file that contains the user- defined functions, e.g., Map and Reduce Writes the JAR and configuration to HDFS to be accessible by the executors Looks at the input file(s) to decide how many map tasks are needed Makes some sanity checks Finally, it pushes the BRB (Big Red Button) 01/18/2018 8

  9. Job Preparation Master node Configuration HDFS InputFormat#getSplits() FileInputSplit Split 1 Mapper 1 Path Split 2 Mapper 2 Start JAR File .. .. End Split M Mapper M 01/18/2018 9

  10. Map Phase Runs in parallel on worker nodes M Mappers: Read the input Apply the map function Apply the combine function (if configured) Store the map output There is no guaranteed ordering for processing the input splits 01/18/2018 10

  11. Map Phase Master node … IS 1 IS 2 IS 3 IS 4 IS 5 IS M 01/18/2018 11

  12. Mapper Reads the job configuration and task information (mostly, InputSplit) Instantiates an object of the Mapper class Instantiates a record reader for the assigned input split Calls Mapper#setup(Context) Reads records one-by-one from the record reader and passes them to the map function The map function writes the output to the context 01/18/2018 12

  13. MapContext Keeps track of which input split is being read and which records are being processed Holds all the job configuration and some additional information about the map task Materializes the map output 01/18/2018 13

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend