MapReduce研究(转载)

MapReduce

From Wikipedia, the free encyclopedia

Jump to: navigation, search

MapReduce is a patented[1] software framework introduced by Google to support distributed computing on large data sets on clusters of computers.[2]

The framework is inspired by map and reduce functions commonly used in functional programming,[3] although their purpose in the MapReduce framework is not the same as their original forms.[4]

MapReduce libraries have been written in C++, C#, Erlang, Java, Python, Ruby, F#, R and other programming languages.

Contents

[hide]

[edit] Overview

MapReduce is a framework for processing huge datasets on certain kinds of distributable problems using a large number of computers (nodes), collectively referred to as a cluster. Computational processing can occur on data stored either in a filesystem (unstructured) or within a database (structured).

"Map" step: The master node takes the input, chops it up into smaller sub-problems, and distributes those to worker nodes. A worker node may do this again in turn, leading to a multi-level tree structure. The worker node processes that smaller problem, and passes the answer back to its master node.

"Reduce" step: The master node then takes the answers to all the sub-problems and combines them in a way to get the output - the answer to the problem it was originally trying to solve.

The advantage of MapReduce is that it allows for distributed processing of the map and reduction operations. Provided each mapping operation is independent of the other, all maps can be performed in parallel - though in practice it is limited by the data source and/or the number of CPUs near that data. Similarly, a set of 'reducers' can perform the reduction phase - all that is required is that all outputs of the map operation which share the same key are presented to the same reducer, at the same time. While this process can often appear inefficient compared to algorithms that are more sequential, MapReduce can be applied to significantly larger datasets than "commodity" servers can handle - a large server farm can use MapReduce to sort a petabyte of data in only a few hours. The parallelism also offers some possibility of recovering from partial failure of servers or storage during the operation: if one mapper or reducer fails, the work can be rescheduled — assuming the input data is still available.

[edit] Logical view

The Map and Reduce functions of MapReduce are both defined with respect to data structured in (key, value) pairs. Map takes one pair of data with a type in one data domain, and returns a list of pairs in a different domain:

Map(k1,v1) -> list(k2,v2)

The Map function is applied in parallel to every item in the input dataset. This produces a list of (k2,v2) pairs for each call. After that, the MapReduce framework collects all pairs with the same key from all lists and groups them together, thus creating one group for each one of the different generated keys.

The Reduce function is then applied in parallel to each group, which in turn produces a collection of values in the same domain:

Reduce(k2, list (v2)) -> list(v3)

Each Reduce call typically produces either one value v3 or an empty return, though one call is allowed to return more than one value. The returns of all calls are collected as the desired result list.

Thus the MapReduce framework transforms a list of (key, value) pairs into a list of values. This behavior is different from the functional programming map and reduce combination, which accepts a list of arbitrary values and returns one single value that combines all the values returned by map.

It is necessary but not sufficient to have implementations of the map and reduce abstractions in order to implement MapReduce. Distributed implementations of MapReduce require a means of connecting the processes performing the Map and Reduce phases. This may be a distributed file system. Other options are possible, such as direct streaming from mappers to reducers, or for the mapping processors to serve up their results to reducers that query them.

[edit] Example

The canonical example application of MapReduce is a process to count the appearances of each different word in a set of documents:

void map(String name, String document):
  // name: document name
  // document: document contents
  for each word w in document:
    EmitIntermediate(w, "1");
 
void reduce(String word, Iterator partialCounts):
  // word: a word
  // partialCounts: a list of aggregated partial counts
  int result = 0;
  for each pc in partialCounts:
    result += ParseInt(pc);
  Emit(AsString(result));

Here, each document is split in words, and each word is counted initially with a "1" value by the Map function, using the word as the result key. The framework puts together all the pairs with the same key and feeds them to the same call to Reduce, thus this function just needs to sum all of its input values to find the total appearances of that word.

[edit] Dataflow

The frozen part of the MapReduce framework is a large distributed sort. The hot spots, which the application defines, are:

  • an input reader
  • a Map function
  • a partition function
  • a compare function
  • a Reduce function
  • an output writer

[edit] Input reader

The input reader divides the input into appropriate size 'splits' (in practice typically 16MB to 128MB) and the framework assigns one split to each Map function. The input reader reads data from stable storage (typically a distributed file system) and generates key/value pairs.

A common example will read a directory full of text files and return each line as a record.

[edit] Map function

Each Map function takes a series of key/value pairs, processes each, and generates zero or more output key/value pairs. The input and output types of the map can be (and often are) different from each other.

If the application is doing a word count, the map function would break the line into words and output the word as the key and "1" as the value.

[edit] Partition function

Each Map function output is allocated to a particular reducer by the application's partition function. The partition function is given the key and the number of reducers and returns the index of the desired reduce.

A typical default is to hash the key and modulo the number of reducers.

[edit] Comparison function

The input for each Reduce is pulled from the machine where the Map ran and sorted using the application's comparison function.

[edit] Reduce function

The framework calls the application's Reduce function once for each unique key in the sorted order. The Reduce can iterate through the values that are associated with that key and output 0 or more values.

In the word count example, the Reduce function takes the input values, sums them and generates a single output of the word and the final sum.

[edit] Output writer

The Output Writer writes the output of the Reduce to stable storage, usually a distributed file system.

[edit] Distribution and reliability

MapReduce achieves reliability by parceling out a number of operations on the set of data to each node in the network. Each node is expected to report back periodically with completed work and status updates. If a node falls silent for longer than that interval, the master node (similar to the master server in the Google File System) records the node as dead and sends out the node's assigned work to other nodes. Individual operations use atomic operations for naming file outputs as a check to ensure that there are not parallel conflicting threads running. When files are renamed, it is possible to also copy them to another name in addition to the name of the task (allowing for side-effects).

The reduce operations operate much the same way. Because of their inferior properties with regard to parallel operations, the master node attempts to schedule reduce operations on the same node, or in the same rack as the node holding the data being operated on. This property is desirable as it conserves bandwidth across the backbone network of the datacenter.

Implementations are not necessarily highly-available. For example, in Hadoop the NameNode is a single point of failure for the distributed filesystem.

[edit] Educational courses

[edit] Uses

MapReduce is useful in a wide range of applications and architectures[5], including: "distributed grep, distributed sort, web link-graph reversal, term-vector per host, web access log stats, inverted index construction, document clustering, machine learning [6], statistical machine translation..." Most significantly, when MapReduce was finished, it was used to completely regenerate Google's index of the World Wide Web, and replaced the old ad hoc programs that updated the index and ran the various analyses.[7]

MapReduce's stable inputs and outputs are usually stored in a distributed file system. The transient data is usually stored on local disk and fetched remotely by the reducers.

[edit] Criticism

David DeWitt and Michael Stonebraker, experts in parallel databases and shared-nothing architectures, have made [8] assertions about the breadth of problems that MapReduce can be used for. They called its interface too low-level and questioned whether it really represents the paradigm shift its proponents have claimed it is.[9] They challenged the MapReduce proponents' claims of novelty, citing Teradata as an example of prior art that has existed for over two decades. They also compared MapReduce programmers to Codasyl programmers, noting both are "writing in a low-level language performing low-level record manipulation".[9] MapReduce's use of input files and lack of schema support prevents the performance improvements enabled by common database system features such as B-trees and hash partitioning, though projects such as PigLatin and Sawzall are starting to address these problems.

Another article [10] by Greg Jorgensen rejects these views. Jorgensen asserts that DeWitt and Stonebraker's entire analysis is groundless as MapReduce was never designed nor intended to be used as a database. That Google has a distributed database system, BigTable, adds significant weight to this view.

DeWitt and Stonebraker have subsequently published a detailed benchmark study [11] comparing performance of MapReduce and RDBMS approaches on several specific problems and concluding that databases offer real advantages for many kinds of data use, especially on complex processing or where the data is used across an enterprise, but that MapReduce may be easier for users to adopt for simple or one-time processing tasks. They have published the data and code used in their study to allow other researchers to do comparable studies.

Google has been granted a patent on MapReduce. However, there have been claims that this patent should not have been granted because MapReduce is too similar to existing products, Oracle's pipelined table functions [12] for instance.

Patrick Eberhart, author of Harvard Basic[13], which implements a multiple state version of the Harvard Chart Method and of Optimal Classification claims optimized rule tables are preferable to reduction unless they are too large for the system to accommodate.

[edit] Implementations

  • The Google MapReduce framework is implemented in C++ with interfaces in Python and Java.
  • The Hadoop project is a free open source Java MapReduce implementation.
  • Twister is an open source Java MapReduce implementation that supports iterative MapReduce computations efficiently.
  • Greenplum is a commercial MapReduce implementation, with support for Python, Perl, SQL and other languages.[14]
  • Aster Data Systems nCluster In-Database MapReduce supports Java, C, C++, Perl, and Python algorithms integrated into ANSI SQL.[15]
  • GridGain is a free open source Java MapReduce implementation.
  • Phoenix is a shared-memory implementation of MapReduce implemented in C.
  • Plasma MapReduce is an open source MapReduce implementation in Ocaml with its own distributed filesystem, PlasmaFS.
  • FileMap is an open version of the framework that operates on files using existing file-processing tools rather than tuples.
  • MapReduce has also been implemented for the Cell Broadband Engine, also in C. [2]
  • Mars: MapReduce has been implemented on NVIDIA GPUs (Graphics Processors) using CUDA [3].
  • Qt Concurrent is a simplified version of the framework, implemented in C++, used for distributing a task between multiple processor cores [16].
  • CouchDB uses a MapReduce framework for defining views over distributed documents and is implemented in Erlang.
  • Skynet is an open source Ruby implementation of Google’s MapReduce framework
  • Disco is an open source MapReduce implementation by Nokia. Its core is written in Erlang and jobs are normally written in Python.
  • Misco is an open source MapReduce designed for mobile devices and is implemented in Python.
  • Qizmt is an open source MapReduce framework from MySpace written in C#.
  • The open-source Hive framework from Facebook (which provides an SQL-like language over files, layered on the open-source Hadoop MapReduce engine.)
  • The Holumbus Framework: Distributed computing with MapReduce in Haskell Holumbus-MapReduce
  • BashReduce: MapReduce written as a Bash script written by Erik Frey of Last.fm
  • Sector/Sphere which is implemented in C++.
  • MapReduce for Go
  • MongoDB is a scalable, high-performance, open source, schema-free, document-oriented database. Written in C++ that features MapReduce
  • mapReduce provides R-like implementation that demostrates the simplicity of the mapReduce pattern in a functional programming language.[4]
  • RHIPE integrates the R statistics language environment with Hadoop. [17] and makes it possible to code map-reduce algorithms in R.
  • Parallel::MapReduce is a CPAN module providing experimental MapReduce functionality for Perl.
  • Many companies have their own private MapReduce implementations.

[edit] Conferences and users groups

[edit] References

Specific references:

  1. ^ US Patent 7,650,331: "System and method for efficient large-scale data processing "
  2. ^ Google spotlights data center inner workings | Tech news blog - CNET News.com
  3. ^ "Our abstraction is inspired by the map and reduce primitives present in Lisp and many other functional languages." -"MapReduce: Simplified Data Processing on Large Clusters", by Jeffrey Dean and Sanjay Ghemawat; from Google Labs
  4. ^ "Google's MapReduce Programming Model -- Revisited" — paper by Ralf Lämmel; from Microsoft
  5. ^ Colby Ranger; Ramanan Raghuraman, Arun Penmetsa, Gary Bradski, and Christos Kozyrakis. "Evaluating MapReduce for Multi-core and Multiprocessor Systems". HPCA 2007, Best Paper. http://www.willowgarage.com/evaluating-mapreduce-multi-core-and-multiprocessor-systems. 
  6. ^ Cheng-Tao Chu; Sang Kyun Kim, Yi-An Lin, YuanYuan Yu, Gary Bradski, Andrew Ng, and Kunle Olukotun. "Map-Reduce for Machine Learning on Multicore". NIPS 2006. http://www.willowgarage.com/map-reduce-machine-learning-multicore. 
  7. ^ "How Google Works". baselinemag.com. http://www.baselinemag.com/article2/0,1540,1985048,00.asp. "As of October, Google was running about 3,000 computing jobs per day through MapReduce, representing thousands of machine-days, according to a presentation by Dean. Among other things, these batch routines analyze the latest Web pages and update Google's indexes." 
  8. ^ "Database Experts Jump the MapReduce Shark". http://typicalprogrammer.com/programming/mapreduce/. 
  9. ^ a b David DeWitt; Michael Stonebraker. "MapReduce: A major step backwards". databasecolumn.com. http://databasecolumn.vertica.com/database-innovation/mapreduce-a-major-step-backwards/. Retrieved 2008-08-27. 
  10. ^ Greg Jorgensen. "Relational Database Experts Jump The MapReduce Shark". typicalprogrammer.com. http://typicalprogrammer.com/?p=16. Retrieved 2009-11-11. 
  11. ^ Andrew Pavlo; E. Paulson, A. Rasin, D. J. Abadi, D. J. Dewitt, S. Madden, and M. Stonebraker. "A Comparison of Approaches to Large-Scale Data Analysis". Brown University. http://database.cs.brown.edu/projects/mapreduce-vs-dbms/. Retrieved 2010-01-11. 
  12. ^ Curt Monash. "More patent nonsense — Google MapReduce". dbms2.com. http://www.dbms2.com/2010/02/11/google-mapreduce-patent/. Retrieved 2010-03-07. 
  13. ^ http://academia.wikia.com/wiki/A_Method_for_Simulating_the_Process_of_Logical_Human_Thought/Harvard_Basic_v11#Harvard_Basic_v11.1
  14. ^ Parallel Programming in the Age of Big Data
  15. ^ [1]
  16. ^ Abad, Cristina & Avendaño, Allan. "An Introduction to Parallel Programming with MapReduce"
  17. ^ http://www.stat.purdue.edu/~sguha/rhipe/

General references:

[edit] External links

Papers
Books
posted @ 2010-07-19 07:55  衣不解带  阅读(1202)  评论(0编辑  收藏  举报