Reputation: 8144
Im using hadoop map and reduce program . And i need to read a multiple file and output it into multiple files
Example
Input \ one.txt
two.txt
three.txt
Output \
one_out.txt
two_out.txt
I need to get some thing like this. How can i achieve this.
Kindly help me
Thanks
Upvotes: 0
Views: 481
Reputation: 7804
isSplittable(false)
. It will ensure that hadoop does not split your file across mappers and will not generate multiple output files per input fileUpvotes: 1