1 / 27

distributed computing & map reduce

distributed computing & map reduce. CS16: Introduction to Data Structures & Algorithms. Distributed Computing Overview MapReduce Application: Word Count Application: Mutual Friends. Outline.

gavan
Download Presentation

distributed computing & map reduce

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. distributed computing & map reduce CS16: Introduction to Data Structures & Algorithms

  2. Distributed Computing Overview • MapReduce • Application: Word Count • Application: Mutual Friends Outline

  3. Throughout the course of the semester, we have talked about many ways to optimize algorithm speed, for example: • Using efficient data structures • Taking greedy “shortcuts” when we are sure they are correct • Dynamic programming algorithms • However, we left out a seemingly obvious one... • Using more than one computer! Distributed Computing: Motivation

  4. Distributed computing is the field of taking a computational problem and distributing it among many worker computers (nodes) Usually there is a master computer, which coordinates the distribution to and feedback from the nodes The distributed system can be represented as a graph where the vertices are nodes and the edges are the network connecting them Distributed Computing: Explanation

  5. Computing very large prime numbers is a very computationally intensive problem • We don’t have any formula or algorithm we can use to generate primes • There are probabilistic tests, but the only known deterministic method is to divide a test number n by every number from 2 to • If none of the numbers in this range divide n, then n is prime • Linear in the square root of the number • That doesn’t sound so bad…? Distributed Computing: Primes

  6. Wrong! The largest known prime number was discovered last year: 257,885,161 – 1. This number has 17,425,170 digits! • A single machine cannot verify the primality of this number! • This prime (named M48) was discovered through GIMPS, the distributed program “Great Internet MersennePrime Search” • launched in 1996 to find large prime numbers • searches for primes of the form 2m-1 where m itself is prime • GIMPS allows users to donate some of their computer’s rest time toward testing the primality of numbers of this form Distributed Computing: Primes (2)

  7. Distributed Computing: Primes (3) Is 101 prime? Master {2,3,4} | 101? {5,6,7} | 101? {8,9,10} | 101? Node 1 Node 2 Node 3 No No No

  8. There are many problems being solved by massive distributed systems like GIMPS: • Stanford’s Folding@homeproject uses distributed computing to solve the problem of how proteins fold, helping scientists studying Alzheimer’s, Parkinson’s, and cancers • Berkeley’s Milkyway@home project uses distributed computing to generate a highly accurate 3D model of the Milky Way galaxy using data collected over the past decade More Applications

  9. As the Internet has grown, so has the amount of data in existence! • To make sense of all this data, we generally want to: • Iterate over a large number of records • Extract something of interest from each • Shuffle and sort intermediate results • Aggregate intermediate results • Generate final output Typical Large-Data Problem

  10. In 2004, Google was “indexing” websites: crawling pages and keeping track of words and their locations on each page • The size of the Web was huge! To handle all this information, Google researchers came up with the MapReduce Framework Developing MapReduce

  11. MapReduce is a programming abstraction seeking to hide system-level details from developers while providing the advantages of distributed computation • Only focus on the “what” and not the “how” • The developer specifies the computation that needs to be performed, and the framework (MapReduce) handles the actual execution • Serves as a black box for distributed computing MapReduce

  12. To make sense of all this data, we generally want to: • Iterate over a large number of records • Extract something of interest from each • Shuffle and sort intermediate results • Aggregate intermediate results • Generate final output • The MapReduce framework takes care of the rest Typical Large-Data Problem MAP REDUCE

  13. Programmers specify two functions: • map(map_k, map_v) [set of (k, v) tuples] • reduce(k, [list of v with same k]) (k, output) • The MapReduce “runtime” distributes portions of the large data set to separate nodes, running your map routine on the computers in parallel • The runtime then takes care of sorting the intermediate results, which can then be aggregated in parallel by your reduce routine MapReduce

  14. Suppose you want to know the most popular word on the Internet • One method you could use would be to create a hashtable with words as keys and counts as values, but looping through every word on every page and hashing it to the table takes a long time… • MapReduce allows you to speed up the entire process. You need to determine the “mapping” and “reducing” portions, and the framework does the rest! Counting Words

  15. Suppose we have three documents and we would like to know the number of times each word occurs throughout all the documents MapReduce Example doc1 doc2 doc3 do not forget to do what you do send me a forget me not two plus two is not one

  16. The MapReduce runtime takes care of calling our map routine three times, once for each document. What are the input arguments to map? MapReduce Example doc1 doc2 doc3 do not forget to do what you do send me a forget me not two plus two is not one

  17. MapReduce Example: Mapping map(map_k, map_v) [set of (k, v) tuples] doc1 doc2 doc3 do not forget to do what you do send me a forget me not two plus two is not one map(doc1, [do, not, forget, to do, what, you, do]) map(doc2, [send, me, a, forget, me, not]) map(doc3, [two, plus, two, is, not, one])

  18. What should our map function return? Remember that the function must return a list of (key, value) tuples. The output from all of the map calls is grouped by key and then passed to the reducer. MapReduce Example: Mapping map(doc1, [do, not, forget, to, do, what, you, do]) map(doc2, [send, me, a, forget, me, not]) map(doc3, [two, plus, two, is, not, one]) ? ? ?

  19. MapReduce Example: Mapping map(doc1, [do, not, forget, to, do, what, you, do]) [(do,1),(not,1),(forget,1),(to,1),(what,1),(you,1),(do,1)] map(doc2, [send, me, a, forget, me, not]) [(send,1),(me,1),(a,1),(forget,1),(me,1),(not,1)] map(doc3, [two, plus, two, is, not, one]) [(two,1),(plus,1),(two,1),(is,1),(not,1),(one,1)]

  20. The framework takes care of grouping the returned tuples by key and passing the list of values to the reducers. All values for a certain key are sent to the same reducer MapReduce Example: Mapping map(map_k, map_v): // In this example, map_k is a document name and // map_v is a list of strings in the document tuples = [] for v in map_v: tuples.add((v,1)) return tuples

  21. Reduce is called for each of these (word, []) pairs, e.g. reduce(forget, [1,1]) MapReduce Example: Reducing do [1, 1, 1] not [1, 1, 1] forget [1, 1] me [1, 1] two [1, 1] to [1] what [1] you [1] send [1] send [1] a [1] plus [1] is [1] one [1]

  22. Once the reducers all return, we have our counts for all the words! MapReduce Example: Reducing reduce(k, values): // In this example, k is a particular word and // values is a list of all 1’s sum = 0 for v in values: sum += 1 return (k, sum)

  23. The MapReduce Process framework framework framework

  24. Note that all of the map operations can run entirely in parallel, as can all of the reduce operations (once the map operations terminate) • With hundreds or thousands of computing nodes, this is a huge benefit! • This example seemed trivial, but suppose we were counting billions of entries! MapReduce Benefits

  25. For every person on Facebook, Facebook stores their friends in the format Person  [List of friends] How can we use MapReduceprecompute for any two people on Facebook all of the friends they have in common? Hint: we’ll have to use the property that identical keys from the mapper all go to the same reducer! One More Example

  26. The MapReduceframework • Handles scheduling • Assigns workers to map and reduce tasks • Handles “data distribution” • Handles synchronization • Gathers, sorts, and shuffles intermediate data • Handles errors and worker failures and restarts • Everything happens on top of a distributed filesystem (for another lecture!) • All you have to do (for the most part) is write two functions, map and reduce! MapReduce Benefits (2)

  27. http://www.umiacs.umd.edu/~jimmylin/cloud-2010-Spring/session1-slides.pdfhttp://www.umiacs.umd.edu/~jimmylin/cloud-2010-Spring/session1-slides.pdf http://stevekrenzel.com/finding-friends-with-mapreduce Acknowledgements

More Related