MapReduce Algorithm Design

Similar documents
Developing MapReduce Programs

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

Hadoop Distributed File System(HDFS)

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

Data-Intensive Distributed Computing

Introduction to Apache Spark

Data-Intensive Computing with MapReduce

MapReduce Design Patterns

MapReduce Algorithms

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

Map-Reduce Applications: Counting, Graph Shortest Paths

Big Data & Hadoop Environment

Clustering Lecture 8: MapReduce

Spark Programming Essentials

Map-Reduce Applications: Counting, Graph Shortest Paths

Algorithms for MapReduce. Combiners Partition and Sort Pairs vs Stripes

Laarge-Scale Data Engineering

Hadoop Map Reduce 10/17/2018 1

Programming Models MapReduce

Introduction to MapReduce

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

2/26/2017. For instance, consider running Word Count across 20 splits

Cloud Computing CS

Hadoop. copyright 2011 Trainologic LTD

Map Reduce. Yerevan.

UNIT V PROCESSING YOUR DATA WITH MAPREDUCE Syllabus

Introduction to MapReduce

Database Applications (15-415)

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

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

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

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

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

TI2736-B Big Data Processing. Claudia Hauff

Batch Processing Basic architecture

Hadoop MapReduce Framework

Introduction to Data Management CSE 344

Vendor: Cloudera. Exam Code: CCD-410. Exam Name: Cloudera Certified Developer for Apache Hadoop. Version: Demo

MapReduce Algorithm Design

Map Reduce.

Parallel Computing: MapReduce Jin, Hai

Introduction to Map Reduce

CS-2510 COMPUTER OPERATING SYSTEMS

ML from Large Datasets

Big Data Analysis using Hadoop Lecture 3

2/4/2019 Week 3- A Sangmi Lee Pallickara

Information Retrieval Processing with MapReduce

HDFS: Hadoop Distributed File System. CIS 612 Sunnie Chung

Vendor: Hortonworks. Exam Code: HDPCD. Exam Name: Hortonworks Data Platform Certified Developer. Version: Demo

Data Analytics Job Guarantee Program

TITLE: PRE-REQUISITE THEORY. 1. Introduction to Hadoop. 2. Cluster. Implement sort algorithm and run it using HADOOP

Data Partitioning and MapReduce

CS 378 Big Data Programming

Batch Inherence of Map Reduce Framework

Certified Big Data and Hadoop Course Curriculum

Tutorial Outline. Map/Reduce. Data Center as a computer [Patterson, cacm 2008] Acknowledgements

CS MapReduce. Vitaly Shmatikov

Introduction to Data Management CSE 344

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

Map/Reduce. Large Scale Duplicate Detection. Prof. Felix Naumann, Arvid Heise

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

Mitigating Data Skew Using Map Reduce Application

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

Map-Reduce. Marco Mura 2010 March, 31th

Storm. Distributed and fault-tolerant realtime computation. Nathan Marz Twitter

Data-Intensive Computing with MapReduce

Where We Are. Review: Parallel DBMS. Parallel DBMS. Introduction to Data Management CSE 344

Hortonworks HDPCD. Hortonworks Data Platform Certified Developer. Download Full Version :

Apache Spark Internals

Basic MapReduce Algorithm Design

Map Reduce Group Meeting

Big data systems 12/8/17

Distributed Computation Models

Introduction to MapReduce (cont.)

Laboratory Session: MapReduce

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

Databases 2 (VU) ( / )

Local MapReduce debugging

Introduction to BigData, Hadoop:-

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

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

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX

HADOOP FRAMEWORK FOR BIG DATA

Big Data and Scripting map reduce in Hadoop

Lecture 11 Hadoop & Spark

CCA-410. Cloudera. Cloudera Certified Administrator for Apache Hadoop (CCAH)

itpass4sure Helps you pass the actual test with valid and latest training material.

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

MapReduce: Algorithm Design for Relational Operations

Storm. Distributed and fault-tolerant realtime computation. Nathan Marz Twitter

Introduction to Data Management CSE 344

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

MapReduce: Simplified Data Processing on Large Clusters. By Stephen Cardina

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

Chapter 4: Apache Spark

Voldemort. Smruti R. Sarangi. Department of Computer Science Indian Institute of Technology New Delhi, India. Overview Design Evaluation

Tutorial Outline. Map/Reduce. Data Center as a computer [Patterson, cacm 2008] Acknowledgements

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

CompSci 516: Database Systems

COMP6237 Data Mining Data Mining & Machine Learning with Big Data. Jonathon Hare

Transcription:

MapReduce Algorithm Design Bu eğitim sunumları İstanbul Kalkınma Ajansı nın 2016 yılı Yenilikçi ve Yaratıcı İstanbul Mali Destek Programı kapsamında yürütülmekte olan TR10/16/YNY/0036 no lu İstanbul Big Data Eğitim ve Araştırma Merkezi Projesi dahilinde gerçekleştirilmiştir. İçerik ile ilgili tek sorumluluk Bahçeşehir Üniversitesi ne ait olup İSTKA veya Kalkınma Bakanlığı nın görüşlerini yansıtmamaktadır. Adopted from Jimmy Lin s slides (at UMD)

MapReduce: Recap Programmers must specify: map (k, v) <k, v >* reduce (k, v ) <k, v >* All values with the same key are reduced together Optionally, also: 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 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

Everything Else The execution framework handles everything else Scheduling: assigns workers to map and reduce tasks Data distribution : moves processes to data Synchronization: gathers, sorts, and shuffles intermediate data Errors and faults: detects worker failures and restarts Limited control over data and execution flow All algorithms must 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

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

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

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

Scalable Hadoop Algorithms: Themes Avoid object creation Inherently 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 Why Do This? Random sampling Randomly select subset of the data (downsample) Multiple random subsets for Model generation and testing cross validation Train on 80%, test on 20%, for 5- fold cross validation Anonymizing data Replace PII with a random key

Shuffle Mapper generates a random key for each output If you want to reuse a mapper, you could add a partitioner that generates a random partition # Mapper code is then unchanged Reducer can sort based on some other random key Further shuffling the data (input order now gone)

Shuffle and Sort in Hadoop Probably the most complex aspect of MapReduce Map side Map outputs are buffered in memory in a circular buffer When buffer reaches threshold, contents are spilled to disk Spills merged in a single, partitioned file (sorted within each partition): combiner runs during the merges Reduce side First, map outputs are copied over to reducer machine Sort is a multi-pass merge of map outputs (happens in memory and on disk): combiner runs during the merges Final merge pass goes directly into reducer

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

Anatomy of a Job MapReduce program in Hadoop = Hadoop job Jobs are divided into map and reduce tasks An instance of running a task is called a task attempt (occupies a slot) Multiple jobs can be composed into a workflow Job submission: Client (i.e., driver program) creates a job, configures it, and submits it to jobtracker That s it! The Hadoop cluster takes over

Anatomy of a Job Behind the scenes: Input splits are computed (on client end) Job data (jar, configuration XML) are sent to JobTracker JobTracker puts job data in shared location, enqueues tasks TaskTrackers poll for tasks Off to the races

InputFormat Input File Input File InputSplit InputSplit InputSplit InputSplit InputSplit RecordReader RecordReader RecordReader RecordReader RecordReader Mapper Mapper Mapper Mapper Mapper Intermediates Intermediates Intermediates Intermediates Intermediates Source: redrawn from a slide by Cloduera, cc-licensed

Client Records InputSplit InputSplit InputSplit RecordRead er RecordRead er RecordRead er Mapper Mapper Mapper

Mapper Mapper Mapper Mapper Mapper Intermediates Intermediates Intermediates Intermediates Intermediates Partitioner Partitioner Partitioner Partitioner Partitioner (combiners omitted here) Intermediates Intermediates Intermediates Reducer Reducer Reduce Source: redrawn from a slide by Cloduera, cc-licensed

OutputFormat Reducer Reducer Reduce RecordWriter RecordWriter RecordWriter Output File Output File Output File Source: redrawn from a slide by Cloduera, cc-licensed

Word Count: Baseline What s the impact of combiners?

Word Count: Version 1 Are combiners still needed?

Word Count: Version 2 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

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 all integers associated with the same key

Computing the Mean: Version 1 Why can t we use reducer as combiner?

Computing the Mean: Version 2 Why doesn t this work?

Fixed? Computing the Mean: Version 3

Computing the Mean: Version 4 Are combiners still needed?

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

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

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

Issues and Tradeoffs Number of key-value pairs Object creation overhead Time for sorting and shuffling pairs across the network Size of each key-value pair De/serialization overhead Local aggregation Opportunities to perform local aggregation varies Combiners make a big difference Combiners vs. in-mapper combining RAM vs. disk vs. network