min.num.spills.for.combine (default 3)
What does it signify?
a) The min no. of a map spills to have for a combiner to run? So even though we have specified a combiner, its not guaranteed to run?
b) The min no. of spills to have before the combiner runs on the merged/sorted single file created via io.sort.factor. So each time a new file is created by merging, the combiner runs onto it, provided the no. of spills is min 3
I feel the correct answer is a) , but can anyone confirm that.