Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For one of my hadoop jobs, the amount of data fed into my reducer tasks is extremely unbalanced. For instance, if I have 10 reducer tasks, the input size to 9 of them will be in the 50KB range and the last will be close to 200GB. I suspect that my mappers are generating a large number of values for a single key but I don't know what that key is. It's a legacy job and I don't have access to the source code anymore. Is there a way to see the key/value pairs, either as output from the mapper or input to the reducer, while the job is running?

share|improve this question

1 Answer

up vote 1 down vote accepted

Try this adding this to your CLI job run: -D mapred.reduce.tasks=0

This should set the number of reducers to 0, which in effect will have the mappers dump output directly to HDFS. However, there may be some code that is overwriting the number of reducers regardless... so this might not work.

If this works, this will show the output of the mapper.

share|improve this answer
1  
If the number of reducers are overwritten in the application, you can set keep.task.files.pattern (or mapreduce.task.files.preserve.filepattern in newer versions) to a regular expression that matches the IDs of the tasks you don't want to be cleaned up, ie: the intermediate files will available at hadoop.tmp.dir – Lorand Bendig Dec 4 '12 at 22:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.