[ Skip to the content ]

Institute of Formal and Applied Linguistics Wiki


[ Back to the navigation ]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revision Both sides next revision
courses:mapreduce-tutorial:step-8 [2012/01/25 14:46]
straka vytvořeno
courses:mapreduce-tutorial:step-8 [2012/01/25 14:54]
straka
Line 1: Line 1:
-====== MapReduce Tutorial : Multiple reducers and partitioning ======+====== MapReduce Tutorial : Multiple mappers, reducers and partitioning ====== 
 + 
 +In order to achieve parallelism, mappers and reducers must be executed in parallel. 
 + 
 +===== Multiple mappers ===== 
 +The number of mappers is determined automatically according to input files sizes. Every input file is divided into //splits//. The default split size is 32MB. Every file split is then executed by a different mapper. 
 + 
 +The size of file split can be overridden by ''mapred.min.split.size'' and ''maperd.max.split.size''. See the next tutorial step for how to set these flags. 
 + 
 +===== Multiple reducers ===== 
 + 

[ Back to the navigation ] [ Back to the content ]