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?
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.
|
|
|
Try this adding this to your CLI job run: 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. |
|||||
|