Hadoop mapreduce : Driver for chaining mappers within a MapReduce job

前端 未结 4 2077
长情又很酷
长情又很酷 2020-12-14 04:56

I have mapreduce job: my code Map class:

public static class MapClass extends Mapper {

    @Override
    public void m         


        
4条回答
  •  孤城傲影
    2020-12-14 05:32

    Actually the mapper class has to implement the interface org.apache.hadoop.mapred.Mapper. I had the same problem, but this solved it.

提交回复
热议问题