뭔가 개념이 어렵거나 추상적인 느낌만 있고 분명하지 않을 때는 논문이나 책을 정독하는 것이 최고다. 지금은 하둡보단 Apache Spark가 업계의 표준으로 자리잡았지만 그 기반은 모두 구글의 맵리듀스를 기반으로 한다. 맵리듀스에 대한 개념을 모르고도 스파크는 충분히 사용할 수 있다. 하지만 스파크도 제대로 쓰기 위해선 그 기본 이론부터 다져볼 필요가 있다.
MapReduce: Simplified Data Processing on Large Clusters
Jeffrey Dean and Sanjay Ghemawat
jeff@google.com, sanjay@google.com
Google, Inc.
Abstract (초록)
MapReduce is a programming model and an associated implementation for processing and generating large data sets. Users specify a map function that processes a key/value pair to generate a set of intermediate key/value pairs, and a reduce function that merges all intermediate values associated with the same intermediate key. Many real world tasks are expressible in this model, as shown in the paper.
MapReduce는 대규모 데이터 세트를 처리하고 생성하기 위한 프로그래밍 모델 및 이에 따른 구현이다. 사용자는 키/값 쌍을 처리하여 중간 키/값 쌍 집합을 생성하는 map 함수와 동일한 중간 키와 연관된 모든 중간 값을 병합하는 reduce 함수를 지정한다. 본 논문에서 제시된 바와 같이, 많은 현실 세계의 작업이 이 모델로 표현될 수 있다.
Programs written in this functional style are automatically parallelized and executed on a large cluster of commodity machines. The run-time system takes care of the details of partitioning the input data, scheduling the program’s execution across a set of machines, handling machine failures, and managing the required inter-machine communication. This allows programmers without any experience with parallel and distributed systems to easily utilize the resources of a large distributed system.
이와 같은 함수형 스타일로 작성된 프로그램은 자동으로 병렬화되어 일반적인 양산 장비로 이루어진 대규모 클러스터에서 실행된다. 런타임 시스템은 입력 데이터의 분할, 프로그램 실행을 여러 장비에 걸쳐 스케줄링하는 작업, 장애 처리, 그리고 장비간의 필요한 통신 관리를 담당한다. 이를 통해 병렬 및 분산 시스템에 대한 경험이 없는 프로그래머도 대규모 분산 시스템의 자원을 쉽게 활용할 수 있게 된다.
※ commodity machines: 여기선 '양산 장비'라고 번역 하였는데, 빅데이터 처리를 위해 별도로 개발 및 생산된 특수 장비(슈퍼 컴퓨터, 병렬 전용 장비 등)가 아니라 일반적인 PC나 서버 등을 일컫는다.
Our implementation of MapReduce runs on a large cluster of commodity machines and is highly scalable: a typical MapReduce computation processes many terabytes of data on thousands of machines. Programmers find the system easy to use: hundreds of MapReduce programs have been implemented and upwards of one thousand MapReduce jobs are executed on Google’s clusters every day.
MapReduce의 우리의 구현은 양산 장비들로 이루어진 대규모 클러스터에서 실행되며, 높은 확장성을 가진다. 일반적인 MapReduce 계산은 수천 대의 기계에서 수십 테라바이트의 데이터를 처리한다. 프로그래머들은 이 시스템을 사용하기 쉽다고 평가하며, 수백 개의 MapReduce 프로그램이 구현되었고 매일 구글의 클러스터에서 천 건 이상의 MapReduce 작업이 실행되고 있다.
1. Introduction (서문)
Over the past five years, the authors and many others at Google have implemented hundreds of special-purpose computations that process large amounts of raw data, such as crawled documents, web request logs, etc., to compute various kinds of derived data, such as inverted indices, various representations of the graph structure of web documents, summaries of the number of pages crawled per host, the set of most frequent queries in a given day, etc.
지난 5년 동안, 필자들과 구글의 많은 다른 이들은 대량의 원시 데이터를 처리하기 위한 수백 가지의 특수 목적 계산을 구현해왔다. 이러한 원시 데이터에는 크롤링된 문서, 웹 요청 로그 등이 포함되며, 이를 통해 역색인, 웹 문서의 그래프 구조에 대한 다양한 표현, 호스트별 크롤링된 페이지 수 요약, 특정 하루 동안 가장 빈번하게 사용된 쿼리 집합 등 다양한 종류의 유도 데이터를 계산한다.
Most such computations are conceptually straightforward. However, the input data is usually large and the computations have to be distributed across hundreds or thousands of machines in order to finish in a reasonable amount of time. The issues of how to parallelize the computation, distribute the data, and handle failures conspire to obscure the original simple computation with large amounts of complex code to deal with these issues.
이러한 계산의 대부분은 개념적으로는 단순하다. 그러나 입력 데이터가 대개 방대하며, 합리적인 시간 내에 작업을 완료하려면 계산을 수백 또는 수천 대의 기계에 분산해야 한다. 이 과정에서 계산을 병렬화하고 데이터를 분배하며 장애를 처리하는 문제들이 복잡한 코드로 이어져, 원래의 단순한 계산을 어렵게 만든다.
As a reaction to this complexity, we designed a new abstraction that allows us to express the simple computations we were trying to perform but hides the messy details of parallelization, fault-tolerance, data distribution and load balancing in a library. Our abstraction is inspired by the map and reduce primitives present in Lisp and many other functional languages. We realized that most of our computations involved applying a map operation to each logical “record” in our input in order to compute a set of intermediate key/value pairs, and then applying a reduce operation to all the values that shared the same key, in order to combine the derived data appropriately. Our use of a functional model with userspecified map and reduce operations allows us to parallelize large computations easily and to use re-execution as the primary mechanism for fault tolerance.
이러한 복잡성에 대응하기 위해, 우리가 수행하려던 단순한 계산을 표현할 수 있으면서도 병렬화, 장애 허용, 데이터 분배 및 부하 분산과 같은 복잡한 세부 사항을 라이브러리 내부에 감추는 새로운 추상화를 설계하였다. 이 추상화는 Lisp 및 기타 많은 함수형 언어에 존재하는 map과 reduce 기본 연산에서 영감을 받았다. 우리는 대부분의 계산이 입력 데이터의 각 논리적 "레코드"에 대해 map 연산을 적용하여 중간 키/값 쌍의 집합을 계산하고, 같은 키를 공유하는 모든 값에 reduce 연산을 적용하여 적절히 유도된 데이터를 결합하는 과정으로 이루어진다는 것을 깨달았다. 사용자 지정 map과 reduce 연산을 활용하는 함수형 모델의 사용은 대규모 계산을 쉽게 병렬화할 수 있게 하며, 재실행을 장애 허용의 주요 메커니즘으로 활용할 수 있게 한다.
The major contributions of this work are a simple and powerful interface that enables automatic parallelization and distribution of large-scale computations, combined with an implementation of this interface that achieves high performance on large clusters of commodity PCs.
이 연구의 주요 기여는 대규모 계산의 자동 병렬화 및 분산을 가능하게 하는 단순하고 강력한 인터페이스와, 이를 양산형 PC로 이루어진 대규모 클러스터에서 높은 성능으로 실행할 수 있는 구현을 결합한 것이다.
Section 2 describes the basic programming model and gives several examples. Section 3 describes an implementation of the MapReduce interface tailored towards our cluster-based computing environment. Section 4 describes several refinements of the programming model that we have found useful. Section 5 has performance measurements of our implementation for a variety of tasks. Section 6 explores the use of MapReduce within Google including our experiences in using it as the basis for a rewrite of our production indexing system. Section 7 discusses related and future work.
2장은 기본 프로그래밍 모델을 설명하고 여러 예제를 제시한다. 3장은 클러스터 기반 컴퓨팅 환경에 맞게 조정된 MapReduce 인터페이스의 구현을 설명한다. 4장은 유용하다고 판단된 프로그래밍 모델의 여러 개선점을 다룬다. 5장은 다양한 작업에 대한 구현 성능 측정 결과를 포함한다. 6장은 Google 내에서 MapReduce의 사용 사례를 탐구하며, 이를 기반으로 한 프로덕션 색인 시스템 재작성 경험을 다룬다. 7장은 관련 연구와 향후 연구 방향에 대해 논의한다.
2. Programming Model
The computation takes a set of input key/value pairs, and produces a set of output key/value pairs. The user of the MapReduce library expresses the computation as two functions: Map and Reduce.
이 계산은 입력 키/값 쌍의 집합을 받아 출력 키/값 쌍의 집합을 생성한다. MapReduce 라이브러리의 사용자는 이 계산을 Map 함수와 Reduce 함수라는 두 가지 함수로 표현한다.
Map, written by the user, takes an input pair and produces a set of intermediate key/value pairs. The MapReduce library groups together all intermediate values associated with the same intermediate key I and passes them to the Reduce function.
사용자가 작성하는 Map 함수는 입력 쌍을 받아 중간 키/값 쌍의 집합을 생성한다. MapReduce 라이브러리는 동일한 중간 키 I와 연결된 모든 중간 값을 그룹으로 묶어 이를 Reduce 함수에 전달한다.
The Reduce function, also written by the user, accepts an intermediate key I and a set of values for that key. It merges together these values to form a possibly smaller set of values. Typically just zero or one output value is produced per Reduce invocation. The intermediate values are supplied to the user’s reduce function via an iterator. This allows us to handle lists of values that are too large to fit in memory.
사용자가 작성하는 Reduce 함수는 중간 키 I와 해당 키에 대한 값들의 집합을 입력으로 받는다. 이 함수는 이러한 값들을 병합하여 더 작은 값들의 집합을 생성한다. 일반적으로 Reduce 함수의 한 번의 호출마다 0개 또는 1개의 출력 값이 생성된다. 중간 값들은 반복자(iterator)를 통해 Reduce 함수에 제공되며, 이를 통해 메모리에 담을 수 없을 정도로 큰 값 리스트를 처리할 수 있다.
2.1. Example (예시)
Consider the problem of counting the number of occurrences of each word in a large collection of documents. The user would write code similar to the following pseudo-code:
map(String key, String value):
// key: 문서 이름
// value: 문서의 내용
for each word w in value:
EmitIntermediate(w, "1");
reduce(String key, Iterator values):
// key: 단어
// values: 개수들의 리스트
int result = 0;
for each v in values:
result += ParseInt(v);
Emit(key, AsString(result));
The map function emits each word plus an associated count of occurrences (just ‘1’ in this simple example). The reduce function sums together all counts emitted for a particular word.
In addition, the user writes code to fill in a mapreduce specification object with the names of the input and output files, and optional tuning parameters. The user then invokes the MapReduce function, passing it the specification object. The user’s code is linked together with the MapReduce library (implemented in C++). Appendix A contains the full program text for this example.
map 함수는 각 단어와 해당 단어의 등장 횟수를 연결하여 출력한다(이 간단한 예에서는 단순히 '1'로 출력). reduce 함수는 특정 단어에 대해 출력된 모든 등장 횟수를 합산하여 최종 결과를 생성한다.
또한 사용자는 입력 파일과 출력 파일의 이름, 그리고 선택적인 조정 매개변수를 포함하는 MapReduce 명세 객체를 채우는 코드를 작성한다. 이후 사용자는 해당 명세 객체를 전달하여 MapReduce 함수를 호출한다. 사용자가 작성한 코드는 MapReduce 라이브러리(C++로 구현됨)와 함께 링크된다. 이 예제에 대한 전체 프로그램 코드는 부록 A에 포함되어 있다.
2.2. Type (타입)
앞의 의사 코드는 문자열 입력과 출력의 형태로 작성되었지만, 개념적으로 사용자가 제공하는 map과 reduce 함수에는 다음과 같은 타입이 연관되어 있다:
map (k1, v1) → list(k2, v2)
// map 함수는 입력 키 k1과 값 v1을 받아 중간 키/값 쌍 (k2, v2)의 리스트를 생성한다.
reduce (k2, list(v2)) → list(v2)
// reduce 함수는 중간 키 k2와 해당 키에 연관된 값들의 리스트 list(v2)를 받아, 최종적으로 값들의 리스트를 생성한다.
I.e., the input keys and values are drawn from a different domain than the output keys and values. Furthermore, the intermediate keys and values are from the same domain as the output keys and values.
Our C++ implementation passes strings to and from the user-defined functions and leaves it to the user code to convert between strings and appropriate types.
즉, 입력 키와 값은 출력 키와 값과는 다른 도메인에서 가져온다. 또한, 중간 키와 값은 출력 키와 값과 동일한 도메인에 속한다.
우리의 C++ 구현에서는 사용자 정의 함수로 전달되고 반환되는 데이터를 문자열 형태로 처리하며, 문자열과 적절한 타입 간의 변환은 사용자 코드에 맡긴다.
2.3 More Examples (더 많은 예시)
Here are a few simple examples of interesting programs that can be easily expressed as MapReduce computations.
다음은 MapReduce 계산으로 쉽게 표현할 수 있는 흥미로운 프로그램의 몇 가지 간단한 예제이다.
Distributed Grep: The map function emits a line if it matches a supplied pattern. The reduce function is an identity function that just copies the supplied intermediate data to the output.
분산 Grep: map 함수는 제공된 패턴과 일치하는 줄을 출력한다. reduce 함수는 단순히 제공된 중간 데이터를 출력으로 복사하는 동일 함수(identity function)이다.
Count of URL Access Frequency: The map function processes logs of web page requests and outputs hURL, 1i. The reduce function adds together all values for the same URL and emits a hURL, total counti pair.
URL 접근 빈도 계산: map 함수는 웹 페이지 요청 로그를 처리하고 <URL, 1> 쌍을 출력한다. reduce 함수는 동일한 URL에 대한 모든 값을 합산하여 <URL, 총 횟수> 쌍을 출력한다.
Reverse Web-Link Graph: The map function outputs htarget, sourcei pairs for each link to a target URL found in a page named source. The reduce function concatenates the list of all source URLs associated with a given target URL and emits the pair: htarget, list(source)i
역방향 웹 링크 그래프: map 함수는 소스(source)로 명명된 페이지에서 발견된 각 대상(target) URL에 대한 <대상, 소스> 쌍을 출력한다. reduce 함수는 특정 대상 URL과 연관된 모든 소스 URL의 리스트를 연결하여 <대상, 리스트(소스)> 쌍을 출력한다.
Term-Vector per Host: A term vector summarizes the most important words that occur in a document or a set of documents as a list of hword, frequencyi pairs. The map function emits a hhostname, term vectori pair for each input document (where the hostname is extracted from the URL of the document). The reduce function is passed all per-document term vectors for a given host. It adds these term vectors together, throwing away infrequent terms, and then emits a final hhostname, term vectori pair.
호스트별 단어 벡터: 단어 벡터는 문서 또는 문서 집합에서 나타나는 가장 중요한 단어들을 <단어, 빈도> 쌍의 리스트로 요약한 것이다. map 함수는 각 입력 문서에 대해 <호스트 이름, 단어 벡터> 쌍을 출력한다(여기서 호스트 이름은 문서의 URL에서 추출된다). reduce 함수는 주어진 호스트에 대한 모든 문서별 단어 벡터를 전달받는다. 이 함수는 이러한 단어 벡터들을 합산하며, 빈도가 낮은 단어들을 제거하고 최종 <호스트 이름, 단어 벡터> 쌍을 출력한다.
Inverted Index: The map function parses each document, and emits a sequence of hword, document IDi pairs. The reduce function accepts all pairs for a given word, sorts the corresponding document IDs and emits a hword, list(document ID)i pair. The set of all output pairs forms a simple inverted index. It is easy to augment this computation to keep track of word positions.
역색인: map 함수는 각 문서를 파싱하고 <단어, 문서 ID> 쌍의 시퀀스를 출력한다. reduce 함수는 특정 단어에 대한 모든 쌍을 수락하고, 해당 문서 ID를 정렬한 뒤 <단어, 문서 ID 리스트> 쌍을 출력한다. 모든 출력 쌍의 집합은 단순한 역색인을 형성한다. 이 계산에 단어 위치를 추적하는 기능을 추가하는 것도 간단하다.
Distributed Sort: The map function extracts the key from each record, and emits a hkey, recordi pair. The reduce function emits all pairs unchanged. This computation depends on the partitioning facilities described in Section 4.1 and the ordering properties described in Section 4.2.
분산 정렬: map 함수는 각 레코드에서 키를 추출하고 <키, 레코드> 쌍을 출력한다. reduce 함수는 모든 쌍을 변경 없이 출력한다. 이 계산은 4.1절에서 설명된 파티셔닝 기능과 4.2절에서 설명된 정렬 속성에 의존한다.
3. Imprementation (구현)
Many different implementations of the MapReduce interface are possible. The right choice depends on the environment. For example, one implementation may be suitable for a small shared-memory machine, another for a large NUMA multi-processor, and yet another for an even larger collection of networked machines.
This section describes an implementation targeted to the computing environment in wide use at Google: large clusters of commodity PCs connected together with switched Ethernet [4]. In our environment:
MapReduce 인터페이스의 구현은 여러 가지로 가능하며, 적합한 구현은 환경에 따라 달라진다. 예를 들어, 한 구현은 작은 공유 메모리 시스템에 적합할 수 있고, 또 다른 구현은 대규모 NUMA 멀티프로세서에, 또 다른 구현은 훨씬 더 큰 네트워크로 연결된 기계 집합에 적합할 수 있다.
이 절에서는 구글에서 널리 사용되는 컴퓨팅 환경을 대상으로 한 구현을 설명한다. 이 환경은 스위치 이더넷으로 연결된 대규모 양산 PC 클러스터이다.
- (1) Machines are typically dual-processor x86 processors running Linux, with 2-4 GB of memory per machine.
- (2) Commodity networking hardware is used – typically either 100 megabits/second or 1 gigabit/second at the machine level, but averaging considerably less in overall bisection bandwidth.
- (3) A cluster consists of hundreds or thousands of machines, and therefore machine failures are common.
- (4) Storage is provided by inexpensive IDE disks attached directly to individual machines. A distributed file system [8] developed in-house is used to manage the data stored on these disks. The file system uses replication to provide availability and reliability on top of unreliable hardware.
- (5) Users submit jobs to a scheduling system. Each job consists of a set of tasks, and is mapped by the scheduler to a set of available machines within a cluster.
- (1) 각 기기는 일반적으로 듀얼 프로세서 x86 프로세서를 실행하는 Linux 시스템이며, 기기당 2~4GB의 메모리를 갖는다.
- (2) 양산형 네트워킹 하드웨어가 사용되며, 일반적으로 기기 수준에서는 100Mbps 또는 1Gbps의 속도를 제공하지만, 전체적인 절단 대역폭(bisection bandwidth)은 이보다 상당히 낮다.
- (3) 클러스터는 수백에서 수천 대의 기계로 구성되며, 이에 따라 기기 장애가 흔하게 발생한다.
- (4) 저장 장치는 개별 기기에 직접 연결된 저렴한 IDE 디스크를 사용한다. 이러한 디스크에 저장된 데이터를 관리하기 위해 사내에서 개발된 분산 파일 시스템[8]을 사용한다. 이 파일 시스템은 불안정한 하드웨어 위에서 가용성과 신뢰성을 제공하기 위해 복제를 활용한다.
- (5) 사용자는 작업을 스케줄링 시스템에 제출한다. 각 작업은 일련의 태스크(task)로 구성되며, 스케줄러가 이를 클러스터 내 사용 가능한 기기들에 매핑하여 실행한다.
3.1 Execution Overview
The Map invocations are distributed across multiple machines by automatically partitioning the input data into a set of M splits. The input splits can be processed in parallel by different machines. Reduce invocations are distributed by partitioning the intermediate key space into R pieces using a partitioning function (e.g., hash(key) mod R). The number of partitions (R) and the partitioning function are specified by the user.
Map 호출은 입력 데이터를 자동으로 M개의 조각(split)으로 분할하여 여러 기기에 분산된다. 이러한 입력 조각들은 서로 다른 기기에서 병렬로 처리될 수 있다. Reduce 호출은 중간 키 공간을 R개의 조각으로 분할하는 파티셔닝 함수(예: hash(key) mod R)를 사용하여 분산된다. 파티션의 개수(R)와 파티셔닝 함수는 사용자가 지정한다.
Figure 1 shows the overall flow of a MapReduce operation in our implementation. When the user program calls the MapReduce function, the following sequence of actions occurs (the numbered labels in Figure 1 correspond to the numbers in the list below):
그림 1은 우리의 구현에서 MapReduce 연산의 전체 흐름을 보여준다. 사용자가 MapReduce 함수를 호출하면 다음과 같은 일련의 동작이 수행된다(그림 1의 번호 라벨은 아래 목록의 번호와 대응된다).
1. The MapReduce library in the user program first splits the input files into M pieces of typically 16 megabytes to 64 megabytes (MB) per piece (controllable by the user via an optional parameter). It then starts up many copies of the program on a cluster of machines.
2. One of the copies of the program is special – the master. The rest are workers that are assigned work by the master. There are M map tasks and R reduce tasks to assign. The master picks idle workers and assigns each one a map task or a reduce task.
3. A worker who is assigned a map task reads the contents of the corresponding input split. It parses key/value pairs out of the input data and passes each pair to the user-defined Map function. The intermediate key/value pairs produced by the Map function are buffered in memory.
4. Periodically, the buffered pairs are written to local disk, partitioned into R regions by the partitioning function. The locations of these buffered pairs on the local disk are passed back to the master, who is responsible for forwarding these locations to the reduce workers.
5. When a reduce worker is notified by the master about these locations, it uses remote procedure calls to read the buffered data from the local disks of the map workers. When a reduce worker has read all intermediate data, it sorts it by the intermediate keys so that all occurrences of the same key are grouped together. The sorting is needed because typically many different keys map to the same reduce task. If the amount of intermediate data is too large to fit in memory, an external sort is used. 6. The reduce worker iterates over the sorted intermediate data and for each unique intermediate key encountered, it passes the key and the corresponding set of intermediate values to the user’s Reduce function. The output of the Reduce function is appended to a final output file for this reduce partition.
7. When all map tasks and reduce tasks have been completed, the master wakes up the user program. At this point, the MapReduce call in the user program returns back to the user code.
After successful completion, the output of the mapreduce execution is available in the R output files (one per reduce task, with file names as specified by the user). Typically, users do not need to combine these R output files into one file – they often pass these files as input to another MapReduce call, or use them from another distributed application that is able to deal with input that is partitioned into multiple files.
3.2 Master Data Structures
The master keeps several data structures. For each map task and reduce task, it stores the state (idle, in-progress, or completed), and the identity of the worker machine (for non-idle tasks).
The master is the conduit through which the location of intermediate file regions is propagated from map tasks to reduce tasks. Therefore, for each completed map task, the master stores the locations and sizes of the R intermediate file regions produced by the map task. Updates to this location and size information are received as map tasks are completed. The information is pushed incrementally to workers that have in-progress reduce tasks.
3.3 Fault Tolerance
Since the MapReduce library is designed to help process very large amounts of data using hundreds or thousands of machines, the library must tolerate machine failures gracefully.
Worker Failure
The master pings every worker periodically. If no response is received from a worker in a certain amount of time, the master marks the worker as failed. Any map tasks completed by the worker are reset back to their initial idle state, and therefore become eligible for scheduling on other workers. Similarly, any map task or reduce task in progress on a failed worker is also reset to idle and becomes eligible for rescheduling.
Completed map tasks are re-executed on a failure because their output is stored on the local disk(s) of the failed machine and is therefore inaccessible. Completed reduce tasks do not need to be re-executed since their output is stored in a global file system.
When a map task is executed first by worker A and then later executed by worker B (because A failed), all workers executing reduce tasks are notified of the reexecution. Any reduce task that has not already read the data from worker A will read the data from worker B.
MapReduce is resilient to large-scale worker failures. For example, during one MapReduce operation, network maintenance on a running cluster was causing groups of 80 machines at a time to become unreachable for several minutes. The MapReduce mastersimply re-executed the work done by the unreachable worker machines, and continued to make forward progress, eventually completing the MapReduce operation.
Master Failure
It is easy to make the master write periodic checkpoints of the master data structures described above. If the master task dies, a new copy can be started from the last checkpointed state. However, given that there is only a single master, its failure is unlikely; therefore our current implementation aborts the MapReduce computation if the master fails. Clients can check for this condition and retry the MapReduce operation if they desire.
Semantics in the Presence of Failures
When the user-supplied map and reduce operators are deterministic functions of their input values, our distributed implementation produces the same output as would have been produced by a non-faulting sequential execution of the entire program.
We rely on atomic commits of map and reduce task outputs to achieve this property. Each in-progress task writes its output to private temporary files. A reduce task produces one such file, and a map task produces R such files (one per reduce task). When a map task completes, the worker sends a message to the master and includes the names of the R temporary files in the message. If the master receives a completion message for an already completed map task, it ignores the message. Otherwise, it records the names of R files in a master data structure.
When a reduce task completes, the reduce worker atomically renames its temporary output file to the final output file. If the same reduce task is executed on multiple machines, multiple rename calls will be executed for the same final output file. We rely on the atomic rename operation provided by the underlying file system to guarantee that the final file system state contains just the data produced by one execution of the reduce task.
The vast majority of our map and reduce operators are deterministic, and the fact that our semantics are equivalent to a sequential execution in this case makes it very easy for programmersto reason about their program’s behavior. When the map and/or reduce operators are nondeterministic, we provide weaker but still reasonable semantics. In the presence of non-deterministic operators, the output of a particular reduce task R1 is equivalent to the output for R1 produced by a sequential execution of the non-deterministic program. However, the output for a different reduce task R2 may correspond to the output for R2 produced by a different sequential execution of the non-deterministic program.
Consider map task M and reduce tasks R1 and R2. Let e(Ri) be the execution of Ri that committed (there is exactly one such execution). The weaker semantics arise because e(R1) may have read the output produced by one execution of M and e(R2) may have read the output produced by a different execution of M.
3.4 Locality
Network bandwidth is a relatively scarce resource in our computing environment. We conserve network bandwidth by taking advantage of the fact that the input data (managed by GFS [8]) is stored on the local disks of the machines that make up our cluster. GFS divides each file into 64 MB blocks, and stores several copies of each block (typically 3 copies) on different machines. The MapReduce master takes the location information of the input files into account and attempts to schedule a map task on a machine that contains a replica of the corresponding input data. Failing that, it attempts to schedule a map task near a replica of that task’s input data (e.g., on a worker machine that is on the same network switch as the machine containing the data). When running large MapReduce operations on a significant fraction of the workers in a cluster, most input data is read locally and consumes no network bandwidth.