0

I knew that the reducer cannot start until the Mapper is run fully. I want to know if the reduce in the Reducer can run while the Shuffle or Sort is still running /not fully completed.

Binary Nerd
  • 13,872
  • 4
  • 42
  • 44
Keshav Pradeep Ramanath
  • 1,623
  • 4
  • 24
  • 33
  • 1
    It seems your question is completely answered here: http://stackoverflow.com/a/11673808/2700344 – leftjoin Mar 31 '17 at 06:56
  • 2
    Possible duplicate of [When do reduce tasks start in Hadoop?](http://stackoverflow.com/questions/11672676/when-do-reduce-tasks-start-in-hadoop) – vefthym Mar 31 '17 at 07:05

1 Answers1

1

A reducer can start even if "mapper task have partially completed". The param controlling it is mapreduce.slowstart

Follow this. http://bytepadding.com/big-data/map-reduce/understanding-map-reduce-the-missing-guide/

KrazyGautam
  • 2,839
  • 2
  • 21
  • 31