I am trying to set the number of map tasks to work in hadoop 0.20 environment.
I am using an old api.
Here are the options I've tried so far:
conf.set("mapred.tasktracker.map.tasks.maximum", "5");
conf.set("mapred.map.tasks", "10");
conf.set("mapred.map.tasksperslot", "5");
conf.set("mapred.tasktracker.map", "5");
conf.set("mapred.map.parallel.copies", "5");
With all included, the number of tasks performed in parallel remains equal to 2.
What are the correct parameters for setting the number of parallel running cards to 5?
source
share