Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When using the nutch crawler, the fetch jobs are created such that URLs from same host end up in a single data node to maintain crawl politeness(1 QPS). However, certain hosts allow more than 1 QPS and so the URLs are partitioned accordingly. For such hosts, the URLs will be in two fetch jobs meant to be run on two different data nodes. But sometimes Fair scheduler schedules those jobs(reduce tasks) to the same data node.

So is there any way to work around this issue?

Any help is greatly appreciated.

Thanks

share|improve this question

1 Answer

I'm not sure if you want to do something like this because it will impact the rest of your Hadoop cluster...

You can set the number of reduce slots per node to 1. The configuration parameter you want to change for this is mapred.tasktracker.reduce.tasks.maximum.

share|improve this answer
Thanks for the answer. But we have to have a minimum of 3 reduce slots. Can I modify some part of fair scheduler to do this? Any ideas? – Varshith Sep 22 '11 at 5:09

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.