Setting num reduce tasks

2010-10-21 Thread Matt Tanquary
I am using the following to set my number of reduce tasks, however when I run my job it's always using just 1 reducer. conf.setInt("mapred.reduce.tasks", 20); 1 reducer will never finish this job. Please help me to understand why the setting I choose is not used. Thanks, -M@

Re: Setting num reduce tasks

2010-10-21 Thread Matt Tanquary
A little more detail: I have mapred.tasktracker.reduce.tasks.maximum set to 4 and I have 5 nodes. On Thu, Oct 21, 2010 at 1:39 PM, Matt Tanquary wrote: > I am using the following to set my number of reduce tasks, however when I > run my job it's always using just 1 reducer. > > conf.setInt("mapr

Re: Setting num reduce tasks

2010-10-21 Thread Alex Kozlov
Hi Matt, it might be that the parameter does not end up in the final configuration for a number of reasons. Can you check the job config xml in jt:/var/log/hadoop/history or in the JT UI and see what the mapred.reduce.tasks setting is? -- Alex K On Thu, Oct 21, 2010 at 1:39 PM, Matt Tanquary wro

Re: Setting num reduce tasks

2010-10-21 Thread ed
You could also try job.setNumReduceTasks(yourNumber); ~Ed On Thu, Oct 21, 2010 at 4:45 PM, Alex Kozlov wrote: > Hi Matt, it might be that the parameter does not end up in the final > configuration for a number of reasons. Can you check the job config xml in > jt:/var/log/hadoop/history or in

Re: Setting num reduce tasks

2010-10-21 Thread Matt Tanquary
Hi Alex, Yes, I confirmed from those locations that the job is setting the reducers to 1. Thanks On Thu, Oct 21, 2010 at 1:45 PM, Alex Kozlov wrote: > Hi Matt, it might be that the parameter does not end up in the final > configuration for a number of reasons. Can you check the job config xml

Re: Setting num reduce tasks

2010-10-21 Thread Alex Kozlov
It looks like you do not pass the Configuration object correctly. Do you use old or new (mapreduce) API? Do you have something like Job job = new Job(conf, "My job with " + conf.get("mapred.reduce.tasks") + " reducers"); to create the job? Is it OK to share you job creation code? Alex K On T

Re: Setting num reduce tasks

2010-10-21 Thread Matt Tanquary
I used the new API. I just tried the job.setNumReduceTasks() method and it seems to be working. Thanks Alex and Ed for helping me! On Thu, Oct 21, 2010 at 2:32 PM, Alex Kozlov wrote: > It looks like you do not pass the Configuration object correctly. Do you > use old or new (mapreduce) API? D