Ozzie Inputformat MapReduce API

时间:2013-11-25 03:33:08

标签: oozie

我正在尝试使用自定义inputformat创建OOZIE作业。我正在使用新API并已设置:

  <property>
        <name>mapred.mapper.new-api</name>
         <value>true</value>
  </property>
   <property>
       <name>mapred.reducer.new-api</name>
       <value>true</value>
   </property>

我正在哄骗的属性名称是:

 <property>
    <name>mapreduce.job.inputformat.class</name
     <value>org.lab41.dendrite.generator.kronecker.mapreduce.lib.input.QuotaInputFormat</value>
  </property>

是否是正确的属性名称?

1 个答案:

答案 0 :(得分:1)

你可以看到这个页面 https://cwiki.apache.org/confluence/display/OOZIE/Map+Reduce+Cookbook

正确的属性名称应为'mapred.input.format.class'

所以,你可以这样写:

<property>
    <name>mapred.input.format.class</name>
    <value>org.lab41.dendrite.generator.kronecker.mapreduce.lib.input.QuotaInputFormat</value>
</property>