0

If I modify the io.sort.factor and io.sort.mb, does the local sort taking place on the map side use these variables, or are they only used by the sort done on the reducer side?

greedybuddha
  • 7,488
  • 3
  • 36
  • 50
Dolan Antenucci
  • 15,432
  • 17
  • 74
  • 100

1 Answers1

2

Yes, they are used on the map side too (irrespective of whether you have a combiner or not):

  • MapTask.java
    • io.sort.factor - line 1695
    • io.sort.mb - lines 932 - 944
Chris White
  • 29,949
  • 4
  • 71
  • 93