Reputation: 1721
How to configure a custom partitioner on oozie workflow XML for a MapReduce Action? I tried using:
<property>
<name>mapreduce.job.partitioner.class</name>
<value>com.package.MyPartitioner</value>
</property>
<property>
<name>mapreduce.partitioner.class</name>
<value>com.package.MyPartitioner</value>
</property>
Upvotes: 0
Views: 62
Reputation: 309
The below is the configuration for specifying partitioner class for mapreduce new api.
<property>
<name>mapreduce.partitioner.class</name>
<value>test.hadoop.apps.log.LogPartitioner</value>
</property>
Upvotes: 0