Can I force my reducers (copy phase) to start only when all mappers are completed Can I force my reducers (copy phase) to start only when all mappers are completed hadoop hadoop

Can I force my reducers (copy phase) to start only when all mappers are completed


I found myself the answer to my question:there is a job conf parameter that does exactly the job:

mapred.reduce.slowstart.completed.maps=0.90

the reduce tasks only start when 90% of the maps are completed.Default value is 0.05.