Big Data Infrastructure CS 489/698 Big Data Infrastructure (Winter 2017)

Similar documents
Data-Intensive Distributed Computing

Big Data Infrastructure CS 489/698 Big Data Infrastructure (Winter 2016)

Developing MapReduce Programs

MapReduce Algorithm Design

MapReduce Algorithms

Big Data Infrastructure CS 489/698 Big Data Infrastructure (Winter 2017)

Algorithms for MapReduce. Combiners Partition and Sort Pairs vs Stripes

Basic MapReduce Algorithm Design

Data-Intensive Computing with MapReduce

MapReduce Design Patterns

Data-Intensive Distributed Computing

Clustering Lecture 8: MapReduce

Map-Reduce Applications: Counting, Graph Shortest Paths

MapReduce Algorithm Design

Map-Reduce Applications: Counting, Graph Shortest Paths

Map Reduce. Yerevan.

Laarge-Scale Data Engineering

Introduction to MapReduce

Big Data Infrastructure CS 489/698 Big Data Infrastructure (Winter 2017)

Introduction to MapReduce. Adapted from Jimmy Lin (U. Maryland, USA)

CMSC 723: Computational Linguistics I Session #12 MapReduce and Data Intensive NLP. University of Maryland. Wednesday, November 18, 2009

Information Retrieval Processing with MapReduce

Big Data Infrastructure CS 489/698 Big Data Infrastructure (Winter 2017)

Big Data Infrastructure CS 489/698 Big Data Infrastructure (Winter 2016)

TI2736-B Big Data Processing. Claudia Hauff

Lecture 7: MapReduce design patterns! Claudia Hauff (Web Information Systems)!

Introduction to MapReduce

Parallel Computing: MapReduce Jin, Hai

Informa)on Retrieval and Map- Reduce Implementa)ons. Mohammad Amir Sharif PhD Student Center for Advanced Computer Studies

Big Data Infrastructure CS 489/698 Big Data Infrastructure (Winter 2017)

CS6030 Cloud Computing. Acknowledgements. Today s Topics. Intro to Cloud Computing 10/20/15. Ajay Gupta, WMU-CS. WiSe Lab

Map Reduce.

ECE5610/CSC6220 Introduction to Parallel and Distribution Computing. Lecture 6: MapReduce in Parallel Computing

Map Reduce. MCSN - N. Tonellotto - Distributed Enabling Platforms

CS555: Distributed Systems [Fall 2017] Dept. Of Computer Science, Colorado State University

Batch Processing Basic architecture

Data-Intensive Computing with MapReduce

The MapReduce Abstraction

CSE Lecture 11: Map/Reduce 7 October Nate Nystrom UTA

with MapReduce The ischool University of Maryland JHU Summer School on Human Language Technology Wednesday, June 17, 2009

Data-Intensive Distributed Computing

MapReduce Spark. Some slides are adapted from those of Jeff Dean and Matei Zaharia

Principles of Data Management. Lecture #16 (MapReduce & DFS for Big Data)

CS-2510 COMPUTER OPERATING SYSTEMS

Motivation. Map in Lisp (Scheme) Map/Reduce. MapReduce: Simplified Data Processing on Large Clusters

Map Reduce Group Meeting

MapReduce: Simplified Data Processing on Large Clusters 유연일민철기

Databases 2 (VU) ( / )

Introduction to Map Reduce

Clustering Documents. Case Study 2: Document Retrieval

MapReduce: Recap. Juliana Freire & Cláudio Silva. Some slides borrowed from Jimmy Lin, Jeff Ullman, Jerome Simeon, and Jure Leskovec

Introduction to MapReduce. Adapted from Jimmy Lin (U. Maryland, USA)

MapReduce: A Programming Model for Large-Scale Distributed Computation

Parallel Processing - MapReduce and FlumeJava. Amir H. Payberah 14/09/2018

Clustering Documents. Document Retrieval. Case Study 2: Document Retrieval

Big Data Infrastructure CS 489/698 Big Data Infrastructure (Winter 2017)

Big Data Infrastructure CS 489/698 Big Data Infrastructure (Winter 2016)

CS 345A Data Mining. MapReduce

CS MapReduce. Vitaly Shmatikov

Data-Intensive Distributed Computing

Parallel Programming Principle and Practice. Lecture 10 Big Data Processing with MapReduce

Distributed Computations MapReduce. adapted from Jeff Dean s slides

Introduction to MapReduce

CompSci 516: Database Systems

CS427 Multicore Architecture and Parallel Computing

Big Data Management and NoSQL Databases

L22: SC Report, Map Reduce

Big Data Infrastructure CS 489/698 Big Data Infrastructure (Winter 2017)

Jordan Boyd-Graber University of Maryland. Thursday, March 3, 2011

Map-Reduce. Marco Mura 2010 March, 31th

1. Introduction to MapReduce

15-388/688 - Practical Data Science: Big data and MapReduce. J. Zico Kolter Carnegie Mellon University Spring 2018

Overview. Why MapReduce? What is MapReduce? The Hadoop Distributed File System Cloudera, Inc.

CSE 544 Principles of Database Management Systems. Alvin Cheung Fall 2015 Lecture 10 Parallel Programming Models: Map Reduce and Spark

CS 61C: Great Ideas in Computer Architecture. MapReduce

Survey Paper on Traditional Hadoop and Pipelined Map Reduce

Mitigating Data Skew Using Map Reduce Application

Announcements. Reading Material. Map Reduce. The Map-Reduce Framework 10/3/17. Big Data. CompSci 516: Database Systems

Big data systems 12/8/17

PLATFORM AND SOFTWARE AS A SERVICE THE MAPREDUCE PROGRAMMING MODEL AND IMPLEMENTATIONS

April Final Quiz COSC MapReduce Programming a) Explain briefly the main ideas and components of the MapReduce programming model.

Data Partitioning and MapReduce

ML from Large Datasets

MapReduce. Stony Brook University CSE545, Fall 2016

MapReduce: Simplified Data Processing on Large Clusters

Programming Systems for Big Data

Announcements. Parallel Data Processing in the 20 th Century. Parallel Join Illustration. Introduction to Database Systems CSE 414

Introduction to Spark

Introduction to Data Management CSE 344

MapReduce Simplified Data Processing on Large Clusters

Distributed computing: index building and use

Cloud Computing CS

Laboratory Session: MapReduce

PSON: A Parallelized SON Algorithm with MapReduce for Mining Frequent Sets

Systems Infrastructure for Data Science. Web Science Group Uni Freiburg WS 2013/14

Shark. Hive on Spark. Cliff Engle, Antonio Lupher, Reynold Xin, Matei Zaharia, Michael Franklin, Ion Stoica, Scott Shenker

Optimizing the use of the Hard Disk in MapReduce Frameworks for Multi-core Architectures*

Ghislain Fourny. Big Data 6. Massive Parallel Processing (MapReduce)

Map-Reduce and Adwords Problem

Introduction to MapReduce (cont.)

Transcription:

Big Data Infrastructure CS 489/698 Big Data Infrastructure (Winter 2017) Week 2: MapReduce Algorithm Design (2/2) January 12, 2017 Jimmy Lin David R. Cheriton School of Computer Science University of Waterloo These slides are available at http://lintool.github.io/bigdata-2017w/ This work is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States See http://creativecommons.org/licenses/by-nc-sa/3.0/us/ for details

Source: Wikipedia (The Scream)

Source: Wikipedia (Japanese rock garden)

Perfect X What s the point? More details: Lee et al. The Unified Logging Infrastructure for Data Analytics at Twitter. PVLDB, 5(12):1771-1780, 2012.

MapReduce Algorithm Design How do you express everything in terms of m, r, c, p? Toward design patterns

MapReduce Source: Google

MapReduce: Recap Programmer specifies four functions: map (k 1, v 1 ) [<k 2, v 2 >] reduce (k 2, [v 2 ]) [<k 3, v 3 >] All values with the same key are sent to the same reducer partition (k', p) 0... p-1 Often a simple hash of the key, e.g., hash(k') mod n Divides up key space for parallel reduce operations combine (k', v') <k', v'>* Mini-reducers that run in memory after the map phase Used as an optimization to reduce network traffic The execution framework handles everything else

k 1 v 1 k 2 v 2 k 3 v 3 k 4 v 4 k 5 v 5 k 6 v 6 map map map map a 1 b 2 c 3 c 6 a 5 c 2 b 7 c 8 combine combine combine combine a 1 b 2 c 9 a 5 c 2 b 7 c 8 partition partition partition partition Shuffle and Sort: aggregate values by keys a 1 5 b 2 7 c 2 9 8 reduce reduce reduce r 1 s 1 r 2 s 2 r 3 s 3

Everything Else Handles scheduling Assigns workers to map and reduce tasks Handles data distribution Moves processes to data Handles synchronization Gathers, sorts, and shuffles intermediate data Handles errors and faults Detects worker failures and restarts

User Program (1) submit Master (2) schedule map (2) schedule reduce worker split 0 split 1 split 2 split 3 split 4 (3) read worker (4) local write (5) remote read worker worker (6) write output file 0 output file 1 worker Input files Map phase Intermediate files (on local disk) Reduce phase Output files Adapted from (Dean and Ghemawat, OSDI 2004)

But You have limited control over data and execution flow! All algorithms must be expressed in m, r, c, p You don t know: Where mappers and reducers run When a mapper or reducer begins or finishes Which input a particular mapper is processing Which intermediate key a particular reducer is processing

Tools for Synchronization Preserving state in mappers and reducers Capture dependencies across multiple keys and values Cleverly-constructed data structures Bring partial results together Define custom sort order of intermediate keys Control order in which reducers process keys

MapReduce API* Mapper<K in,v in,k out,v out > void setup(mapper.context context) Called once at the start of the task void map(k in key, V in value, Mapper.Context context) Called once for each key/value pair in the input split void cleanup(mapper.context context) Called once at the end of the task Reducer<K in,v in,k out,v out >/Combiner<K in,v in,k out,v out > void reduce(k in void setup(reducer.context context) Called once at the start of the task key, Iterable<V in > values, Reducer.Context context) Called once for each key void cleanup(reducer.context context) Called once at the end of the task *Note that there are two versions of the API!

Preserving State Mapper object state one object per task Reducer object state setup map cleanup API initialization hook one call per input key-value pair one call per intermediate key API cleanup hook setup reduce close

Scalable Hadoop Algorithms: Themes Avoid object creation (Relatively) costly operation Garbage collection Avoid buffering Limited heap size Works for small datasets, but won t scale!

Importance of Local Aggregation Ideal scaling characteristics: Twice the data, twice the running time Twice the resources, half the running time Why can t we achieve this? Synchronization requires communication Communication kills performance Thus avoid communication! Reduce intermediate data via local aggregation Combiners can help

Shuffle and Sort Mapper merged spills (on disk) intermediate files (on disk) Combiner Reducer circular buffer (in memory) Combiner spills (on disk) other reducers other mappers

Word Count: Baseline class Mapper { def map(key: Long, value: Text, context: Context) = { for (word <- tokenize(value)) { context.write(word, 1) class Reducer { def reduce(key: Text, values: Iterable[Int], context: Context) = { for (value <- values) { sum += value context.write(key, sum) What s the impact of combiners?

Word Count: Mapper Histogram class Mapper { def map(key: Long, value: Text, context: Context) = { val counts = new HashMap() for (word <- tokenize(value)) { counts(word) += 1 for ((k, v) <- counts) { context.write(k, v) Are combiners still needed?

Performance Word count on 10% sample of Wikipedia (on Altiscale) Baseline Histogram Running Time ~140s ~140s # Pairs 246m 203m

Word Count: Preserving State class Mapper { val counts = new HashMap() def map(key: Long, value: Text, context: Context) = { for (word <- tokenize(value)) { counts(word) += 1 def cleanup(context: Context) = { for ((k, v) <- counts) { context.write(k, v) Are combiners still needed?

Design Pattern for Local Aggregation In-mapper combining Fold the functionality of the combiner into the mapper by preserving state across multiple map calls Advantages Speed Why is this faster than actual combiners? Disadvantages Explicit memory management required Potential for order-dependent bugs

Performance Word count on 10% sample of Wikipedia (on Altiscale) Baseline Histogram IMC Running Time ~140s ~140s ~80s # Pairs 246m 203m 5.5m

Combiner Design Combiners and reducers share same method signature Sometimes, reducers can serve as combiners Often, not Remember: combiner are optional optimizations Should not affect algorithm correctness May be run 0, 1, or multiple times Example: find average of integers associated with the same key

Computing the Mean: Version 1 class Mapper { def map(key: Text, value: Int, context: Context) = { context.write(key, value) class Reducer { def reduce(key: Text, values: Iterable[Int], context: Context) { for (value <- values) { sum += value cnt += 1 context.write(key, sum/cnt) Why can t we use reducer as combiner?

Computing the Mean: Version 2 class Mapper { def map(key: Text, value: Int, context: Context) = context.write(key, value) class Combiner { def reduce(key: Text, values: Iterable[Int], context: Context) = { for (value <- values) { sum += value cnt += 1 context.write(key, (sum, cnt)) class Reducer { def reduce(key: Text, values: Iterable[Pair], context: Context) = { for (value <- values) { sum += value.left cnt += value.right context.write(key, sum/cnt) Why doesn t this work?

Computing the Mean: Version 3 class Mapper { def map(key: Text, value: Int, context: Context) = context.write(key, (value, 1)) class Combiner { def reduce(key: Text, values: Iterable[Pair], context: Context) = { for (value <- values) { sum += value.left cnt += value.right context.write(key, (sum, cnt)) class Reducer { def reduce(key: Text, values: Iterable[Pair], context: Context) = { for (value <- values) { sum += value.left cnt += value.right context.write(key, sum/cnt) Fixed?

Computing the Mean: Version 4 class Mapper { val sums = new HashMap() val counts = new HashMap() def map(key: Text, value: Int, context: Context) = { sums(key) += value counts(key) += 1 def cleanup(context: Context) = { for (key <- counts) { context.write(key, (sums(key), counts(key))) Are combiners still needed?

Performance 200m integers across three char keys Java Scala V1 ~120s ~120s V3 ~90s ~120s V4 ~60s ~90s (default HashMap) ~70s (optimized HashMap)

MapReduce API* Mapper<K in,v in,k out,v out > void setup(mapper.context context) Called once at the start of the task void map(k in key, V in value, Mapper.Context context) Called once for each key/value pair in the input split void cleanup(mapper.context context) Called once at the end of the task Reducer<K in,v in,k out,v out >/Combiner<K in,v in,k out,v out > void reduce(k in void setup(reducer.context context) Called once at the start of the task key, Iterable<V in > values, Reducer.Context context) Called once for each key void cleanup(reducer.context context) Called once at the end of the task *Note that there are two versions of the API!

Algorithm Design: Running Example Term co-occurrence matrix for a text collection M = N x N matrix (N = vocabulary size) M ij : number of times i and j co-occur in some context (for concreteness, let s say context = sentence) Why? Distributional profiles as a way of measuring semantic distance Semantic distance useful for many language processing tasks Applications in lots of other domains

MapReduce: Large Counting Problems Term co-occurrence matrix for a text collection = specific instance of a large counting problem A large event space (number of terms) A large number of observations (the collection itself) Goal: keep track of interesting statistics about the events Basic approach Mappers generate partial counts Reducers aggregate partial counts How do we aggregate partial counts efficiently?

First Try: Pairs Each mapper takes a sentence: Generate all co-occurring term pairs For all pairs, emit (a, b) count Reducers sum up counts associated with these pairs Use combiners!

Pairs: Pseudo-Code class Mapper { def map(key: Long, value: Text, context: Context) = { for (u <- tokenize(value)) { for (v <- neighbors(u)) { context.write((u, v), 1) class Reducer { def reduce(key: Pair, values: Iterable[Int], context: Context) = { for (value <- values) { sum += value context.write(key, sum)

Pairs: Pseudo-Code One more thing class Partitioner { def getpartition(key: Pair, value: Int, numtasks: Int): Int = { return key.left % numtasks

Pairs Analysis Advantages Easy to implement, easy to understand Disadvantages Lots of pairs to sort and shuffle around (upper bound?) Not many opportunities for combiners to work

Another Try: Stripes Idea: group together pairs into an associative array (a, b) 1 (a, c) 2 (a, d) 5 (a, e) 3 (a, f) 2 a { b: 1, c: 2, d: 5, e: 3, f: 2 Each mapper takes a sentence: Generate all co-occurring term pairs For each term, emit a { b: count b, c: count c, d: count d Reducers perform element-wise sum of associative arrays + a { b: 1, d: 5, e: 3 a { b: 1, c: 2, d: 2, f: 2 a { b: 2, c: 2, d: 7, e: 3, f: 2

Stripes: Pseudo-Code class Mapper { def map(key: Long, value: Text, context: Context) = { for (u <- tokenize(value)) { val map = new HashMap() for (v <- neighbors(u)) { map(v) += 1 context.write(u, map) a { b: 1, c: 2, d: 5, e: 3, f: 2 class Reducer { def reduce(key: Text, values: Iterable[Map], context: Context) = { val map = new HashMap() for (value <- values) { map += value context.write(key, map) + a { b: 1, d: 5, e: 3 a { b: 1, c: 2, d: 2, f: 2 a { b: 2, c: 2, d: 7, e: 3, f: 2

Stripes Analysis Advantages Far less sorting and shuffling of key-value pairs Can make better use of combiners Disadvantages More difficult to implement Underlying object more heavyweight Overhead associated with data structure manipulations Fundamental limitation in terms of size of event space

Cluster size: 38 cores Data Source: Associated Press Worldstream (APW) of the English Gigaword Corpus (v3), which contains 2.27 million documents (1.8 GB compressed, 5.7 GB uncompressed)

Stripes >> Pairs? Important tradeoffs Developer code vs. framework CPU vs. RAM vs. disk vs. network Number of key-value pairs: sorting and shuffling data across the network Size and complexity of each key-value pair: de/serialization overhead Cache locality and the cost of manipulating data structures Additional issues Opportunities for local aggregation (combining) Load imbalance

Tradeoffs Pairs: Generates a lot more key-value pairs Less combining opportunities More sorting and shuffling Simple aggregation at reduce Stripes: Generates fewer key-value pairs More opportunities for combining Less sorting and shuffling More complex (slower) aggregation at reduce

Relative Frequencies How do we estimate relative frequencies from counts? f(b A) = N(A, B) N(A) = N(A, B) P B N(A, B 0 ) 0 Why do we want to do this? How do we do this with MapReduce?

f(b A): Stripes a {b 1 :3, b 2 :12, b 3 :7, b 4 :1, Easy! One pass to compute (a, *) Another pass to directly compute f(b A)

f(b A): Pairs What s the issue? Computing relative frequencies requires marginal counts But the marginal cannot be computed until you see all counts Buffering is a bad idea! Solution: What if we could get the marginal count to arrive at the reducer first?

f(b A): Pairs (a, *) 32 (a, b 1 ) 3 (a, b 2 ) 12 (a, b 3 ) 7 (a, b 4 ) 1 Reducer holds this value in memory (a, b 1 ) 3 / 32 (a, b 2 ) 12 / 32 (a, b 3 ) 7 / 32 (a, b 4 ) 1 / 32 For this to work: Emit extra (a, *) for every b n in mapper Make sure all a s get sent to same reducer (use partitioner) Make sure (a, *) comes first (define sort order) Hold state in reducer across different key-value pairs

Order Inversion Common design pattern: Take advantage of sorted key order at reducer to sequence computations Get the marginal counts to arrive at the reducer before the joint counts Additional optimization Apply in-memory combining pattern to accumulate marginal counts

Synchronization: Pairs vs. Stripes Approach 1: turn synchronization into an ordering problem Sort keys into correct order of computation Partition key space so each reducer receives appropriate set of partial results Hold state in reducer across multiple key-value pairs to perform computation Illustrated by the pairs approach Approach 2: data structures that bring partial results together Each reducer receives all the data it needs to complete the computation Illustrated by the stripes approach

Secondary Sorting MapReduce sorts input to reducers by key Values may be arbitrarily ordered What if we want to sort value also? E.g., k (v 1, r), (v 3, r), (v 4, r), (v 8, r)

Secondary Sorting: Solutions Solution 1 Buffer values in memory, then sort Why is this a bad idea? Solution 2 Value-to-key conversion : form composite intermediate key, (k, v 1 ) Let the execution framework do the sorting Preserve state across multiple key-value pairs to handle processing Anything else we need to do?

Recap: Tools for Synchronization Preserving state in mappers and reducers Capture dependencies across multiple keys and values Cleverly-constructed data structures Bring partial results together Define custom sort order of intermediate keys Control order in which reducers process keys

Issues and Tradeoffs Important tradeoffs Developer code vs. framework CPU vs. RAM vs. disk vs. network Number of key-value pairs: sorting and shuffling data across the network Size and complexity of each key-value pair: de/serialization overhead Cache locality and the cost of manipulating data structures Additional issues Opportunities for local aggregation (combining) Local imbalance

Debugging at Scale Works on small datasets, won t scale why? Memory management issues (buffering and object creation) Too much intermediate data Mangled input records Real-world data is messy! There s no such thing as consistent data Watch out for corner cases Isolate unexpected behavior, bring local

Questions? Source: Wikipedia (Japanese rock garden)