<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Configure an oozie mapreduce action in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/5649#M995</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is an example if you are using a Driver class:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steps:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Pull the Source code for the new PiEstimator and compile with Maven. Requires Git, Maven and Java:&lt;/LI&gt;&lt;LI&gt;git clone&amp;nbsp;&lt;A href="https://github.com/cmconner156/oozie_pi_load_test.git" rel="nofollow" target="_blank"&gt;https://github.com/cmconner156/oozie_pi_load_test.git&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;cd oozie_pi_load_test/PiEstimatorKrbSrc&lt;/LI&gt;&lt;LI&gt;vi pom.xml&lt;/LI&gt;&lt;LI&gt;set hadoop-core and hadoop-client to match your version.&lt;/LI&gt;&lt;LI&gt;mvm clean install&lt;/LI&gt;&lt;LI&gt;Copy oozie_pi_load_test/PiEstimatorKrbSrc/target/PiEstimatorKrb-1.0.jar to some location in HDFS. Make sure it's readable by whichever Hue user will run the workflow.&lt;/LI&gt;&lt;LI&gt;Go to Hue browser and go to the Oozie app&lt;/LI&gt;&lt;LI&gt;Go to the Workflows tab&lt;/LI&gt;&lt;LI&gt;Click "Create"&lt;/LI&gt;&lt;LI&gt;Enter a name and description&lt;/LI&gt;&lt;LI&gt;Click Save&lt;/LI&gt;&lt;LI&gt;Drag "Java" from the actions above to the slot between "Start" and "end"&lt;/LI&gt;&lt;LI&gt;Give it a name and description&lt;/LI&gt;&lt;LI&gt;For the Jar name, click the browse button&lt;/LI&gt;&lt;LI&gt;Find the PiEstimatorKrb-1.0.jar file you put in HDFS&lt;/LI&gt;&lt;LI&gt;For "Main Class" enter "com.test.PiEstimatorKrb"&lt;/LI&gt;&lt;LI&gt;For "Arguments" enter "&amp;lt;tempdir&amp;gt; &amp;lt;nMaps&amp;gt; &amp;lt;nSamples&amp;gt;" by replacing those with correct values. For example "/user/cconner/pi_temp 4 1000", base the nMaps and nSamples on what you would normally use for the Pi example.&lt;/LI&gt;&lt;LI&gt;Click "add path" next to "Files" and search for PiEstimatorKrb-1.0.jar in HDFS.&lt;/LI&gt;&lt;LI&gt;Click Done.&lt;/LI&gt;&lt;LI&gt;Click Save.&lt;/LI&gt;&lt;LI&gt;Click Submit on the left.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is an example not using a driver class:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steps:&lt;/P&gt;&lt;P&gt;Put /usr/lib/hadoop-mapreduce/hadoop-mapreduce-examples.jar in HDFS somewhere, I put it in /user/oozie and make it readable by everyone.&amp;nbsp;&lt;BR /&gt;Create a directory in HDFS for the job. I did "hadoop fs -mkdir teragen_oozie"&amp;nbsp;&lt;BR /&gt;Create an empty input directory in HDFS for the job. I did "hadoop fs -mkdir teragen_oozie/input"&amp;nbsp;&lt;BR /&gt;Go into Hue-&amp;gt;Oozie and click Create workflow.&amp;nbsp;&lt;BR /&gt;Enter Name, Description, "HDFS deployment directory" and set it to the location above&amp;nbsp;&lt;BR /&gt;Click Save&amp;nbsp;&lt;BR /&gt;Click + button for Mapreduce&amp;nbsp;&lt;BR /&gt;Enter a name for the MR task&amp;nbsp;&lt;BR /&gt;For Jar name, browse to the location where you put hadoop-mapreduce-examples.jar above&amp;nbsp;&lt;BR /&gt;Click "Add Property" for Job Properties and add the following:&amp;nbsp;&lt;BR /&gt;mapred.input.dir = hdfs://cdh412-1.test.com:8020/user/admin/teragen_oozie/input&amp;nbsp;&lt;BR /&gt;mapred.output.dir = hdfs://cdh412-1.test.com:8020/user/admin/teragen_oozie/output&amp;nbsp;&lt;BR /&gt;mapred.mapper.class = org.apache.hadoop.examples.terasort.TeraGen$SortGenMapper&amp;nbsp;&lt;BR /&gt;terasort.num-rows = 500&amp;nbsp;&lt;BR /&gt;Click "Add delete" for Prepare and specify "hdfs://cdh412-1.test.com:8020/user/admin/teragen_oozie/output" as the location.&amp;nbsp;&lt;BR /&gt;Click Save.&amp;nbsp;&lt;BR /&gt;Now run the Workflow and it should succeed&amp;nbsp;&lt;BR /&gt;NOTE: change cdh412-1.test.com:8020 to be the correct NN for your environment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
    <pubDate>Tue, 04 Feb 2014 21:57:41 GMT</pubDate>
    <dc:creator>cconner</dc:creator>
    <dc:date>2014-02-04T21:57:41Z</dc:date>
    <item>
      <title>Configure an oozie mapreduce action</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/5647#M994</link>
      <description>&lt;P&gt;I'd like to use hue to configure a oozie workflow which consists a mapreduce job. &amp;nbsp;I have a hard time to figure out where the arguments go.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, &amp;nbsp;if I am to run the famous wordcount jar with a twist that is having to use a date variable which I will define in an coordinator.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;$ bin/hadoop jar /usr/joe/wordcount.jar org.myorg.WordCount /usr/joe/wordcount/input/${date} /usr/joe/wordcount/output/${date}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;From Hue-Oozie, it is only obvious to me where the jar file is defined, but how about:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;- classname&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;- input&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;- output&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How do I specify these pieces? I wish there is a oozie workflow video showing how to define a mapreduce action.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2026 14:02:13 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/5647#M994</guid>
      <dc:creator>helenpoon</dc:creator>
      <dc:date>2026-04-21T14:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Configure an oozie mapreduce action</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/5649#M995</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is an example if you are using a Driver class:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steps:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Pull the Source code for the new PiEstimator and compile with Maven. Requires Git, Maven and Java:&lt;/LI&gt;&lt;LI&gt;git clone&amp;nbsp;&lt;A href="https://github.com/cmconner156/oozie_pi_load_test.git" rel="nofollow" target="_blank"&gt;https://github.com/cmconner156/oozie_pi_load_test.git&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;cd oozie_pi_load_test/PiEstimatorKrbSrc&lt;/LI&gt;&lt;LI&gt;vi pom.xml&lt;/LI&gt;&lt;LI&gt;set hadoop-core and hadoop-client to match your version.&lt;/LI&gt;&lt;LI&gt;mvm clean install&lt;/LI&gt;&lt;LI&gt;Copy oozie_pi_load_test/PiEstimatorKrbSrc/target/PiEstimatorKrb-1.0.jar to some location in HDFS. Make sure it's readable by whichever Hue user will run the workflow.&lt;/LI&gt;&lt;LI&gt;Go to Hue browser and go to the Oozie app&lt;/LI&gt;&lt;LI&gt;Go to the Workflows tab&lt;/LI&gt;&lt;LI&gt;Click "Create"&lt;/LI&gt;&lt;LI&gt;Enter a name and description&lt;/LI&gt;&lt;LI&gt;Click Save&lt;/LI&gt;&lt;LI&gt;Drag "Java" from the actions above to the slot between "Start" and "end"&lt;/LI&gt;&lt;LI&gt;Give it a name and description&lt;/LI&gt;&lt;LI&gt;For the Jar name, click the browse button&lt;/LI&gt;&lt;LI&gt;Find the PiEstimatorKrb-1.0.jar file you put in HDFS&lt;/LI&gt;&lt;LI&gt;For "Main Class" enter "com.test.PiEstimatorKrb"&lt;/LI&gt;&lt;LI&gt;For "Arguments" enter "&amp;lt;tempdir&amp;gt; &amp;lt;nMaps&amp;gt; &amp;lt;nSamples&amp;gt;" by replacing those with correct values. For example "/user/cconner/pi_temp 4 1000", base the nMaps and nSamples on what you would normally use for the Pi example.&lt;/LI&gt;&lt;LI&gt;Click "add path" next to "Files" and search for PiEstimatorKrb-1.0.jar in HDFS.&lt;/LI&gt;&lt;LI&gt;Click Done.&lt;/LI&gt;&lt;LI&gt;Click Save.&lt;/LI&gt;&lt;LI&gt;Click Submit on the left.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is an example not using a driver class:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steps:&lt;/P&gt;&lt;P&gt;Put /usr/lib/hadoop-mapreduce/hadoop-mapreduce-examples.jar in HDFS somewhere, I put it in /user/oozie and make it readable by everyone.&amp;nbsp;&lt;BR /&gt;Create a directory in HDFS for the job. I did "hadoop fs -mkdir teragen_oozie"&amp;nbsp;&lt;BR /&gt;Create an empty input directory in HDFS for the job. I did "hadoop fs -mkdir teragen_oozie/input"&amp;nbsp;&lt;BR /&gt;Go into Hue-&amp;gt;Oozie and click Create workflow.&amp;nbsp;&lt;BR /&gt;Enter Name, Description, "HDFS deployment directory" and set it to the location above&amp;nbsp;&lt;BR /&gt;Click Save&amp;nbsp;&lt;BR /&gt;Click + button for Mapreduce&amp;nbsp;&lt;BR /&gt;Enter a name for the MR task&amp;nbsp;&lt;BR /&gt;For Jar name, browse to the location where you put hadoop-mapreduce-examples.jar above&amp;nbsp;&lt;BR /&gt;Click "Add Property" for Job Properties and add the following:&amp;nbsp;&lt;BR /&gt;mapred.input.dir = hdfs://cdh412-1.test.com:8020/user/admin/teragen_oozie/input&amp;nbsp;&lt;BR /&gt;mapred.output.dir = hdfs://cdh412-1.test.com:8020/user/admin/teragen_oozie/output&amp;nbsp;&lt;BR /&gt;mapred.mapper.class = org.apache.hadoop.examples.terasort.TeraGen$SortGenMapper&amp;nbsp;&lt;BR /&gt;terasort.num-rows = 500&amp;nbsp;&lt;BR /&gt;Click "Add delete" for Prepare and specify "hdfs://cdh412-1.test.com:8020/user/admin/teragen_oozie/output" as the location.&amp;nbsp;&lt;BR /&gt;Click Save.&amp;nbsp;&lt;BR /&gt;Now run the Workflow and it should succeed&amp;nbsp;&lt;BR /&gt;NOTE: change cdh412-1.test.com:8020 to be the correct NN for your environment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2014 21:57:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/5649#M995</guid>
      <dc:creator>cconner</dc:creator>
      <dc:date>2014-02-04T21:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Configure an oozie mapreduce action</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/5695#M996</link>
      <description>&lt;P&gt;Class not found for the class with the driver. &amp;nbsp;I uploaded the jar into the workflow's workspace folder. &amp;nbsp;Then the jar is defined in "jar" field and also added to the Files and Archive. &amp;nbsp;The driver class is definitely in the jar.&amp;nbsp;&lt;SPAN&gt;What a I doing wrong?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2014 22:10:33 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/5695#M996</guid>
      <dc:creator>helenpoon</dc:creator>
      <dc:date>2014-02-05T22:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Configure an oozie mapreduce action</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/5697#M997</link>
      <description>&lt;P&gt;I am answering my own question here about the ClassNotFoundException. &amp;nbsp;Since I have updated the jar into the workflow's workspace, when picking the jar for jar and files, the generated Workflow.xml &amp;nbsp;show the path for the jar as relative to the workspace.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This does not seem to work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I uploaded the same jar to a different hdfs location when the workspace. Generated the workflow.xml and see that the jar path is fully qualified. &amp;nbsp;This time it worked.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I'd thought the relative path should have worked as well. &amp;nbsp;Anyhow, this is for other who run into the same issue.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2014 22:34:19 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/5697#M997</guid>
      <dc:creator>helenpoon</dc:creator>
      <dc:date>2014-02-05T22:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Configure an oozie mapreduce action</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/5707#M998</link>
      <description>You are probably hitting this bug: &lt;A target="_blank" href="https://issues.cloudera.org/browse/HUE-1680"&gt;https://issues.cloudera.org/browse/HUE-1680&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;"Current workaround, don't use a full path for the jar file or don't put the 'Jar name' into lib, just put it one level up:"&lt;BR /&gt;&lt;BR /&gt;This is fixed in CDH5</description>
      <pubDate>Thu, 06 Feb 2014 01:03:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/5707#M998</guid>
      <dc:creator>Romainr</dc:creator>
      <dc:date>2014-02-06T01:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: Configure an oozie mapreduce action</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/59846#M999</link>
      <description>&lt;P&gt;Partitioner is not invoked when used in oozie mapreduce action (Creating workflow using HUE). But works as expected when running using hadoop jar commad in CLI,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have implemented secondary sort in mapreduce and trying to execute it using Oozie (From Hue).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Though I have set the partitioner class in the properties, the partitioner is not being executed. So, I'm not getting output as expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The same code runs fine when run using hadoop command.&lt;/P&gt;&lt;P&gt;And here is my workflow.xml&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;workflow-app name="MyTriplets" xmlns="uri:oozie:workflow:0.5"&amp;gt;
&amp;lt;start to="mapreduce-598d"/&amp;gt;
&amp;lt;kill name="Kill"&amp;gt;
    &amp;lt;message&amp;gt;Action failed, error message[${wf:errorMessage(wf:lastErrorNode())}]&amp;lt;/message&amp;gt;
&amp;lt;/kill&amp;gt;
&amp;lt;action name="mapreduce-598d"&amp;gt;
    &amp;lt;map-reduce&amp;gt;
        &amp;lt;job-tracker&amp;gt;${jobTracker}&amp;lt;/job-tracker&amp;gt;
        &amp;lt;name-node&amp;gt;${nameNode}&amp;lt;/name-node&amp;gt;
        &amp;lt;configuration&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.output.dir&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;/test_1109_3&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.input.dir&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;/apps/hive/warehouse/7360_0609_rx/day=06-09-2017/hour=13/quarter=2/,/apps/hive/warehouse/7360_0609_tx/day=06-09-2017/hour=13/quarter=2/,/apps/hive/warehouse/7360_0509_util/day=05-09-2017/hour=16/quarter=1/&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.input.format.class&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;org.apache.hadoop.hive.ql.io.RCFileInputFormat&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.mapper.class&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;PonRankMapper&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.reducer.class&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;PonRankReducer&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.output.value.comparator.class&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;PonRankGroupingComparator&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.mapoutput.key.class&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;PonRankPair&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.mapoutput.value.class&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;org.apache.hadoop.io.Text&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.reduce.output.key.class&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;org.apache.hadoop.io.NullWritable&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.reduce.output.value.class&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;org.apache.hadoop.io.Text&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.reduce.tasks&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;1&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.partitioner.class&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;PonRankPartitioner&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
            &amp;lt;property&amp;gt;
                &amp;lt;name&amp;gt;mapred.mapper.new-api&amp;lt;/name&amp;gt;
                &amp;lt;value&amp;gt;False&amp;lt;/value&amp;gt;
            &amp;lt;/property&amp;gt;
        &amp;lt;/configuration&amp;gt;
    &amp;lt;/map-reduce&amp;gt;
    &amp;lt;ok to="End"/&amp;gt;
    &amp;lt;error to="Kill"/&amp;gt;
&amp;lt;/action&amp;gt;
&amp;lt;end name="End"/&amp;gt;&lt;/PRE&gt;&lt;P&gt;When running using hadoop jar command, I set the partitioner class using JobConf.setPartitionerClass API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure why my partitioner is not executed when running using Oozie. Inspite of adding&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;property&amp;gt;
&amp;lt;name&amp;gt;mapred.partitioner.class&amp;lt;/name&amp;gt;
&amp;lt;value&amp;gt;PonRankPartitioner&amp;lt;/value&amp;gt;
&amp;lt;/property&amp;gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Sep 2017 19:09:18 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Configure-an-oozie-mapreduce-action/m-p/59846#M999</guid>
      <dc:creator>Raghavi</dc:creator>
      <dc:date>2017-09-12T19:09:18Z</dc:date>
    </item>
  </channel>
</rss>

