basics of cloud computing –lecture 3 introduction to mapreduce · basics of cloud computing...

36
Basics of Cloud Computing – Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides by Jimmy Lin, Christophe Bisciglia, Aaron Kimball, & Sierra Michels-Slettvet, Google Distributed Computing Seminar, 2007 (licensed under Creation Commons Attribution 3.0 License)

Upload: others

Post on 16-Oct-2019

13 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Basics of Cloud Computing – Lecture 3

Introduction to MapReduce

Satish Srirama

Some material adapted from slides by Jimmy Lin, Christophe Bisciglia, Aaron Kimball,

& Sierra Michels-Slettvet, Google Distributed Computing Seminar, 2007 (licensed

under Creation Commons Attribution 3.0 License)

Page 2: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Outline

• MapReduce

• Hadoop

17.04.2013 2/36Satish Srirama

Page 3: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Economics of Cloud Providers –

Failures - Recap

• Cloud Computing providers bring a shift from high reliability/availability servers to commodity servers– At least one failure per day in large datacenter

• Caveat: User software has to adapt to failures• Caveat: User software has to adapt to failures

• Solution: Replicate data and computation– MapReduce & Distributed File System

• MapReduce = functional programming meets distributed processing on steroids – Not a new idea… dates back to the 50’s (or even 30’s)

17.04.2013 3/36Satish Srirama

Page 4: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Functional Programming ->

MapReduce

• Two important concepts in functional

programming

– Map: do something to everything in a list

– Fold: combine results of a list in some way– Fold: combine results of a list in some way

17.04.2013 4/36Satish Srirama

Page 5: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Map

• Map is a higher-order function

• How map works:– Function is applied to every element in a list

– Result is a new list

• map f lst: (’a->’b) -> (’a list) -> (’b list)• map f lst: (’a->’b) -> (’a list) -> (’b list)– Creates a new list by applying f to each element of the

input list; returns output in order.

17.04.2013

f f f f f f

5/36Satish Srirama

Page 6: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Fold

• Fold is also a higher-order function

• How fold works:– Accumulator set to initial value

– Function applied to list element and the accumulator

– Result stored in the accumulator– Result stored in the accumulator

– Repeated for every item in the list

– Result is the final value in the accumulator

17.04.2013 6/36Satish Srirama

Page 7: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Map/Fold in Action

• Simple map example:

• Fold examples:

(map (lambda (x) (* x x))

'(1 2 3 4 5))

→ '(1 4 9 16 25)

• Fold examples:

• Sum of squares:

(fold + 0 '(1 2 3 4 5)) → 15

(fold * 1 '(1 2 3 4 5)) → 120

(define (sum-of-squares v)

(fold + 0 (map (lambda (x) (* x x)) v)))

(sum-of-squares '(1 2 3 4 5)) → 55

17.04.2013 7/36Satish Srirama

Page 8: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Implicit Parallelism In map

• In a purely functional setting, elements of a list being computed by map cannot see the effects of the computations on other elements

• If order of application of f to elements in list is commutative, we can reorder or parallelize execution

• Let’s assume a long list of records: imagine if...– We can parallelize map operations

– We have a mechanism for bringing map results back together in the – We have a mechanism for bringing map results back together in the fold operation

• This is the “secret” that MapReduce exploits

• Observations:– No limit to map parallelization since maps are independent

– We can reorder folding if the fold function is commutative and associative

17.04.2013 8/36Satish Srirama

Page 9: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Typical Large-Data Problem

• Iterate over a large number of records

• Extract something of interest from each

• Shuffle and sort intermediate results

• Aggregate intermediate results• Aggregate intermediate results

• Generate final outputKey idea: provide a functional abstraction for

these two operations – MapReduce

17.04.2013 9/36Satish Srirama

Page 10: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

MapReduce

• Programmers specify two functions:

map (k, v) → <k’, v’>*

reduce (k’, [v’]) → <k’’, v’’>*

– All values with the same key are sent to the same – All values with the same key are sent to the same reducer

• The execution framework handles everything else…

17.04.2013 10/36Satish Srirama

Page 11: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

mapmap map map

k1 k2 k3 k4 k5 k6v1 v2 v3 v4 v5 v6

ba 1 2 c c3 6 a c5 2 b c7 8

MapReduce

Shuffle and Sort: aggregate values by keys

reduce reduce reduce

ba 1 2 c c3 6 a c5 2 b c7 8

a 1 5 b 2 7 c 2 3 6 8

r1 s1 r2 s2 r3 s3

17.04.2013 11Satish Srirama

Page 12: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

“Hello World” Example: Word Count

Map(String docid, String text):

for each word w in text:

Emit(w, 1);

Reduce(String term, Iterator<Int> values):

int sum = 0;

for each v in values:

sum += v;

Emit(term, sum);

17.04.2013 12/36Satish Srirama

Page 13: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

MapReduce

• Programmers specify two functions:

map (k, v) → <k’, v’>*

reduce (k’, [v’]) → <k’’, v’’>*

– All values with the same key are sent to the same – All values with the same key are sent to the same reducer

• The execution framework handles everything else…

What’s “everything else”?

17.04.2013 13/36Satish Srirama

Page 14: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

MapReduce “Runtime”• Handles scheduling

– Assigns workers to map and reduce tasks

• Handles “data distribution”– Moves processes to data

• Handles synchronizationGathers, sorts, and shuffles intermediate data– Gathers, sorts, and shuffles intermediate data

• Handles errors and faults– Detects worker failures and automatically restarts

• Handles speculative execution– Detects “slow” workers and re-executes work

• Everything happens on top of a distributed FS (later)

Sounds simple, but many challenges!17.04.2013 14/36Satish Srirama

Page 15: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

MapReduce - extended

• Programmers specify two functions:map (k, v) → <k’, v’>*reduce (k’, [v’]) → <k’’, v’’>*– All values with the same key are reduced together

• The execution framework handles everything else…• Not quite…usually, programmers also specify:• Not quite…usually, programmers also specify:

partition (k’, number of partitions) → partition for k’– Often a simple hash of the key, e.g., hash(k’) mod n– Divides up key space for parallel reduce operationscombine (k’, v’) → <k’’, v’’>*– Mini-reducers that run in memory after the map phase– Used as an optimization to reduce network traffic

17.04.2013 15/36Satish Srirama

Page 16: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

combinecombine combine combine

ba 1 2 c 9 a c5 2 b c7 8

mapmap map map

k1 k2 k3 k4 k5 k6v1 v2 v3 v4 v5 v6

ba 1 2 c c3 6 a c5 2 b c7 8

ba 1 2 c 9 a c5 2 b c7 8

partition partition partition partition

Shuffle and Sort: aggregate values by keys

reduce reduce reduce

a 1 5 b 2 7 c 2 9 8

r1 s1 r2 s2 r3 s3

c 2 3 6 8

17.04.2013 16Satish Srirama

Page 17: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Two more details…

• Barrier between map and reduce phases

– But we can begin copying intermediate data

earlier

• Keys arrive at each reducer in sorted order• Keys arrive at each reducer in sorted order

– No enforced ordering across reducers

17.04.2013 17/36Satish Srirama

Page 18: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

split 0

worker

Master

User

Program

output

(1) submit

(2) schedule map (2) schedule reduce

MapReduce Overall Architecture

split 0

split 1

split 2

split 3

split 4

worker

worker

worker

worker

output

file 0

output

file 1

(3) read(4) local write

(5) remote read (6) write

Input

files

Map

phase

Intermediate files

(on local disk)

Reduce

phase

Output

files

Adapted from (Dean and Ghemawat, OSDI 2004)

17.04.2013 18Satish Srirama

Page 19: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

MapReduce can refer to…

• The programming model

• The execution framework (aka “runtime”)

• The specific implementation

Usage is usually clear from context!

17.04.2013 19/36Satish Srirama

Page 20: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

MapReduce Implementations

• Google has a proprietary implementation in C++

– Bindings in Java, Python

• Hadoop is an open-source implementation in Java

– Development led by Yahoo, used in production– Development led by Yahoo, used in production

– Now an Apache project

– Rapidly expanding software ecosystem

• Lots of custom research implementations

– For GPUs, cell processors, etc.

17.04.2013 20/36Satish Srirama

Page 21: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Cloud Computing Storage, or how do

we get data to the workers?NAS

Compute Nodes

SAN

What’s the problem here?

17.04.2013 21/36Satish Srirama

Page 22: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Distributed File System

• Don’t move data to workers… move workers to the data!– Store data on the local disks of nodes in the cluster

– Start up the workers on the node that has the data local

• Why?• Why?– Network bisection bandwidth is limited

– Not enough RAM to hold all the data in memory

– Disk access is slow, but disk throughput is reasonable

• A distributed file system is the answer– GFS (Google File System) for Google’s MapReduce

– HDFS (Hadoop Distributed File System) for Hadoop

17.04.2013 22/36Satish Srirama

Page 23: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

GFS: Assumptions

• Choose commodity hardware over “exotic” hardware

– Scale “out”, not “up”

• High component failure rates

– Inexpensive commodity components fail all the time

• “Modest” number of huge files• “Modest” number of huge files

– Multi-gigabyte files are common, if not encouraged

• Files are write-once, mostly appended to

– Perhaps concurrently

• Large streaming reads over random access

– High sustained throughput over low latency

GFS slides adapted from material by (Ghemawat et al., SOSP 2003)

17.04.2013 23/36Satish Srirama

Page 24: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

GFS: Design Decisions

• Files stored as chunks

– Fixed size (64MB)

• Reliability through replication

– Each chunk replicated across 3+ chunkservers

• Single master to coordinate access, keep metadata• Single master to coordinate access, keep metadata

– Simple centralized management

• No data caching

– Little benefit due to large datasets, streaming reads

• Simplify the API

– Push some of the issues onto the client (e.g., data layout)

HDFS = GFS clone (same basic ideas implemented in Java)

17.04.2013 24/36Satish Srirama

Page 25: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

From GFS to HDFS

• Terminology differences:

– GFS master = Hadoop namenode

– GFS chunkservers = Hadoop datanodes

• Functional differences:• Functional differences:

– No file appends in HDFS

– HDFS performance is (likely) slower

For the most part, we’ll use the Hadoop terminology…

17.04.2013 25/36Satish Srirama

Page 26: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

(file name, block id)

(block id, block location)

HDFS namenode

File namespace/foo/bar

block 3df2

Application

HDFS Client

HDFS Architecture

Adapted from (Ghemawat et al., SOSP 2003)

instructions to datanode

datanode state(block id, byte range)

block data

HDFS datanode

Linux file system

HDFS datanode

Linux file system

17.04.2013 26Satish Srirama

Page 27: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Namenode Responsibilities

• Managing the file system namespace:

– Holds file/directory structure, metadata, file-to-block mapping, access permissions, etc.

• Coordinating file operations:

– Directs clients to datanodes for reads and writes– Directs clients to datanodes for reads and writes

– No data is moved through the namenode

• Maintaining overall health:

– Periodic communication with the datanodes

– Block re-replication and rebalancing

– Garbage collection

17.04.2013 27/36Satish Srirama

Page 28: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Hadoop Processing Model

• Create or allocate a cluster

• Put data onto the file system– Data is split into blocks

– Replicated and stored in the cluster

• Run your job• Run your job– Copy Map code to the allocated nodes

• Move computation to data, not data to computation

– Gather output of Map, sort and partition on key

– Run Reduce tasks

• Results are stored in the HDFS

17.04.2013 28/36Satish Srirama

Page 29: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Some MapReduce Terminology w.r.t.

Hadoop

• Job – A “full program” - an execution of a

Mapper and Reducer across a data set

• Task – An execution of a Mapper or a Reducer

on a data chunkon a data chunk

– Also known as Task-In-Progress (TIP)

• Task Attempt – A particular instance of an

attempt to execute a task on a machine

17.04.2013 29/36Satish Srirama

Page 30: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Terminology example

• Running “Word Count” across 20 files is one

job

• 20 files to be mapped imply 20 map tasks

+ some number of reduce tasks+ some number of reduce tasks

• At least 20 map task attempts will be

performed

– more if a machine crashes or slow, etc.

17.04.2013 30/36Satish Srirama

Page 31: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Task Attempts

• A particular task will be attempted at least

once, possibly more times if it crashes

– If the same input causes crashes over and over,

that input will eventually be abandonedthat input will eventually be abandoned

• Multiple attempts at one task may occur in

parallel with speculative execution turned on

– Task ID from TaskInProgress is not a unique

identifier; don’t use it that way

17.04.2013 31/36Satish Srirama

Page 32: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

MapReduce: High Level

namenode

namenode daemon

job submission node

jobtracker

MapReduce job

submitted by

client computer

Master node

17.04.2013

datanode daemon

Linux file system

tasktracker

slave node

datanode daemon

Linux file system

tasktracker

slave node

datanode daemon

Linux file system

tasktracker

slave node

Task instance Task instance Task instance

32/36Satish Srirama

Page 33: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

MapReduce/GFS Summary

• Simple, but powerful programming model

• Scales to handle petabyte+ workloads

– Google: six hours and two minutes to sort 1PB (10

trillion 100-byte records) on 4,000 computerstrillion 100-byte records) on 4,000 computers

– Yahoo!: 16.25 hours to sort 1PB on 3,800 computers

• Incremental performance improvement with

more nodes

• Seamlessly handles failures, but possibly with

performance penalties

17.04.2013 33/36Satish Srirama

Page 34: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

This week in Lab

• Setting eclipse to work with MapReduce jobs

• Try out WordCount example

• PI calculation based on MapReduce on a MR

clustercluster

17.04.2013 34/36Satish Srirama

Page 35: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

Next Lecture

• Let us have a look at some MapReduce

algorithms

17.04.2013 35/36Satish Srirama

Page 36: Basics of Cloud Computing –Lecture 3 Introduction to MapReduce · Basics of Cloud Computing –Lecture 3 Introduction to MapReduce Satish Srirama Some material adapted from slides

References

• Hadoop wiki http://wiki.apache.org/hadoop/

• Hadoop MapReduce tutorial http://hadoop.apache.org/docs/r1.0.4/mapred_tutorial.htmld_tutorial.html

• J. Dean and S. Ghemawat, “MapReduce: Simplified Data Processing on Large Clusters”, OSDI'04: Sixth Symposium on Operating System Design and Implementation, Dec, 2004.

17.04.2013 36/36Satish Srirama